@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/* 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;
}
