/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('heaven.jpg') no-repeat center center/cover;
  z-index: -1;
}

body {
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background: url('heaven.jpg') no-repeat center center/cover;
  background-attachment: fixed;
}

/* Falling leaves */
.falling-leaf {
  position: fixed;
  width: 40px;
  height: 40px;
  background: url('leaf.png') no-repeat center center/contain;
  animation: fall linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0.3;
  }
}

/* Header section */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.google-logo {
  width: 100px;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  border-radius: 25px;
  padding: 10px 20px;
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2), -6px -6px 12px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-box:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3), -8px -8px 20px rgba(255, 255, 255, 0.5);
}

.search-box input {
  border: none;
  outline: none;
  font-size: 18px;
  width: 300px;
  background: transparent;
}

.search-box button {
  background: #4285F4;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  margin-left: 10px;
}

.search-box button:hover {
  background: #357ae8;
}

/* App Buttons */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
}

.app-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 20px;
  width: 150px;
  height: 150px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.app-button:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.2);
}

.app-button img {
  width: 70px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.app-button span {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}

/* Lovely Footer */
footer {
  margin-top: 30px;
  font-size: 16px;
  color: #666;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Layout and Spotify Player Styles */
.main-layout {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  width: 100vw;
  position: relative;
}

.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 40px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  min-width: 0;
  height: auto;
  min-height: 100vh;
}

.sidebar-player {
  width: 420px;
  min-width: 320px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: none;
  box-shadow: none;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 2;
  overflow-y: auto;
  padding: 20px 0;
}

.spotify-player-custom {
  width: 90%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 30px 30px 30px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#spotify-artwork-container {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 20px;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.10);
}

#player-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.player-info {
  width: 100%;
  text-align: center;
}

.player-times {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #fff;
}

#seek-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

#seek-bar::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: #1DB954;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 10;
  position: relative;
}

#seek-bar::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #1DB954;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Liquid Glass Equalizer Animation for Timeline */
.seek-bar-container {
  position: relative;
  flex: 1;
  height: 32px;
  background: rgba(255,255,255,0.08); /* subtle white glass, not black */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  backdrop-filter: blur(12px) saturate(1.5);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.glossy-eq-bars {
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 2;
  pointer-events: none;
  /* No background! Let the glass show through */
}

.glossy-eq-bar {
  flex: 1;
  margin: 0 1px;
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.25) 20%, var(--eq-color, #fff) 60%, rgba(255,255,255,0.10) 100%);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10), 0 0 8px 2px var(--eq-color, #fff);
  transition: height 0.2s cubic-bezier(.4,2,.6,1), background 0.3s;
  opacity: 0.85;
  filter: blur(0.5px) brightness(1.2) saturate(1.3);
}

.glossy-eq-bar.red { --eq-color: #ff3c3c; }
.glossy-eq-bar.orange { --eq-color: #ffb13c; }
.glossy-eq-bar.yellow { --eq-color: #ffe93c; }
.glossy-eq-bar.green { --eq-color: #3cff5e; }
.glossy-eq-bar.cyan { --eq-color: #3cfff7; }
.glossy-eq-bar.blue { --eq-color: #3c7cff; }
.glossy-eq-bar.purple { --eq-color: #a13cff; }

/* Hide the old histogram bars */
.histogram-bars { display: none !important; }

#seek-bar {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: transparent;
  z-index: 3;
}
.seek-bar-progress {
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, rgba(29,185,84,0.25), rgba(30,215,96,0.18));
  border-radius: 18px;
  transition: width 0.1s ease;
  z-index: 2;
  opacity: 0.7;
}

.player-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1DB954;
}

.player-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.player-controls button {
  background: rgba(255,255,255,0.25);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.10);
}

.player-controls button:hover {
  background: rgba(255,255,255,0.4);
}

#login-btn {
  margin-top: 10px;
  background: #1DB954;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.10);
}

#login-btn[hidden] {
  display: none;
}

.loading-indicator {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #1DB954;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.status-message {
  font-size: 12px;
  color: #1DB954;
  margin-top: 5px;
  text-align: center;
  min-height: 16px;
}

.player-url-input {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.player-url-input input {
  width: 70%;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  margin-right: 8px;
}

.player-url-input button {
  padding: 6px 14px;
  border-radius: 8px;
  border: none;
  background: #1DB954;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.player-url-input button:hover {
  background: #1ed760;
}

.player-url-input button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Song Search Section */
.song-search-section {
  margin: 20px 0;
  padding: 18px 14px 18px 14px;
  background: rgba(255,255,255,0.18);
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  max-width: 380px;
  width: 100%;
  min-width: 0;
  align-self: center;
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  transition: background 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.song-search-section h3 {
  color: #222;
  margin-bottom: 15px;
  text-align: center;
  font-size: 16px;
  text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.search-header h3 {
  margin: 0;
  flex: 1;
}

.return-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.return-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.song-search-input {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.song-search-input input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #222;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.04);
}

.song-search-input input:focus {
  background: #fff;
  box-shadow: 0 0 10px rgba(29, 185, 84, 0.10);
}

.song-search-input button {
  padding: 10px 20px;
  background: #1DB954;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  min-width: 80px;
}

.song-search-input button:hover {
  background: #1ed760;
  transform: translateY(-2px);
}

.song-search-input button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Search Results */
.search-results {
  margin-bottom: 15px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  display: none; /* Initially hidden */
}

.search-results:not(:empty) {
  display: block; /* Show when there's content */
}

.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 70px;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.search-result-item img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-artist {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-play {
  background: #1DB954;
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-play:hover {
  background: #1ed760;
  transform: scale(1.1);
}

.search-result-similar {
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 15px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 11px;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.search-result-similar:hover {
  background: #ff5252;
  transform: scale(1.05);
}

/* Similar Songs */
.similar-songs {
  margin-top: 15px;
  max-height: 250px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  display: none; /* Initially hidden */
}

.similar-songs:not(:empty) {
  display: block; /* Show when there's content */
}

.similar-songs::-webkit-scrollbar {
  width: 6px;
}

.similar-songs::-webkit-scrollbar-track {
  background: transparent;
}

.similar-songs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.similar-songs::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.similar-songs h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.similar-song-item {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 60px;
}

.similar-song-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(3px);
}

.similar-song-item img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  margin-right: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.similar-song-info {
  flex: 1;
  min-width: 0;
}

.similar-song-title {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.similar-song-artist {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.similar-song-play {
  background: #1DB954;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.similar-song-play:hover {
  background: #1ed760;
  transform: scale(1.1);
}

/* No results message */
.no-results {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-style: italic;
  padding: 20px;
  font-size: 14px;
}

/* Loading state for search */
#search-loading-indicator {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

/* Search Results Container Fit */
.search-results, .similar-songs {
  background: rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 4px 0;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.06);
  max-width: 100%;
  min-width: 0;
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  box-sizing: border-box;
}

/* Playlist Section */
.playlist-section {
  margin: 20px 0;
  padding: 18px 14px 18px 14px;
  background: rgba(255,255,255,0.18);
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  max-width: 380px;
  width: 100%;
  min-width: 0;
  align-self: center;
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  transition: background 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.playlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.playlist-header h3 {
  color: #222;
  margin: 0;
  font-size: 16px;
  text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

.refresh-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #222;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.refresh-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.playlists-container {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  background: rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.06);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  box-sizing: border-box;
}

.playlists-container::-webkit-scrollbar {
  width: 6px;
}

.playlists-container::-webkit-scrollbar-track {
  background: transparent;
}

.playlists-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.playlists-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.playlist-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  margin: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 60px;
}

.playlist-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(3px);
}

.playlist-item img {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  margin-right: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.playlist-info {
  flex: 1;
  min-width: 0;
}

.playlist-name {
  color: #222;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-owner {
  color: rgba(34, 34, 34, 0.7);
  font-size: 11px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-play {
  background: #1DB954;
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.playlist-play:hover {
  background: #1ed760;
  transform: scale(1.1);
}

.loading-playlists {
  color: rgba(34, 34, 34, 0.7);
  text-align: center;
  font-style: italic;
  padding: 20px;
  font-size: 14px;
}

.no-playlists {
  color: rgba(34, 34, 34, 0.7);
  text-align: center;
  font-style: italic;
  padding: 20px;
  font-size: 14px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
  }
  
  .sidebar-player {
    width: 100%;
    min-width: auto;
    height: auto;
    position: relative;
    order: 2;
  }
  
  .main-content {
    order: 1;
    padding: 20px 0 40px 0;
  }
  
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }
  
  .app-button {
    width: 120px;
    height: 120px;
    padding: 15px;
  }
  
  .app-button img {
    width: 50px;
  }
  
  .app-button span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
  
  .app-button {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
  
  .app-button img {
    width: 40px;
  }
  
  .app-button span {
    font-size: 11px;
  }
} 