@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body, html {
  margin: 0;
  padding: 0;
  height: 100vh;
  position: fixed;
  width: 100%;
  height: 100%;
}

body {
  background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge, and Firefox */
  .hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .hide-scrollbar {
    overflow: -moz-scrollbars-none;  /* Firefox */
    overflow: -webkit-scrollbars-none;  /* Safari */
    overflow-y: scroll;  /* Keep scrolling */
    -ms-overflow-style: none;  /* IE 10+ */
  }
  
  .hide-scrollbar::-webkit-scrollbar {
    width: 0 !important;  /* Safari/Chrome */
  }

.dot-matrix {
    background-image: radial-gradient(#333333 1px, transparent 1px);
    background-size: 15px 15px;
}

.glow-effect {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.category-icon {
    transition: all 0.3s ease;
}

.category-icon:hover {
    transform: scale(1.1);
}

.progress-bar {
    height: 4px;
    background-color: #333333;
}

.progress-fill {
    height: 100%;
    background-color: #ffffff;
    transition: width 0.5s ease;
}

.expense-item {
    border-bottom: 1px solid #222222;
    transition: all 0.3s ease;
}

.expense-item:hover {
    background-color: #111111;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.dot-pulse {
    animation: dotPulse 1.5s infinite;
}

.dot-pulse:nth-child(2) {
    animation-delay: 0.2s;
}

.dot-pulse:nth-child(3) {
    animation-delay: 0.4s;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
}

.tab-active {
    border-bottom: 2px solid white;
}

.cs-bg-green {
    background-color: #4caf50;
}

/* Animation to rotate the button */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rotate {
    animation: rotate 2s linear infinite;
}


.install-card-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .install-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  
  .install-card-text h3 {
    margin: 0;
    color: white;
    font-size: 16px;
  }
  
  .install-card-text p {
    margin: 4px 0 0;
    color: #aaa;
    font-size: 14px;
  }
  
  .install-button {
    width: 100%;
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .install-button:hover {
    background: #45a049;
  }

  .ios-install-hint {
    color: #6b7280; /* Tailwind's text-gray-400 */
    font-size: 0.875rem; /* Tailwind's text-sm */
    margin-top: 0.5rem; /* Tailwind's mt-2 */
    line-height: 1.5;
    padding: 0.5rem;
    background-color: rgba(255,255,255,0.9);
    border-radius: 0.375rem;
  }
  
  .ios-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin: 0 2px;
  }
  
  /* Alternative if you prefer to keep using your SVG file */
  .ios-share-icon img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin: 0 4px;
    /* iOS blue color */
    filter: invert(39%) sepia(93%) saturate(2476%) hue-rotate(202deg) brightness(102%) contrast(101%);
  }