/* assets/css/style.css */
* {
    font-family: 'Vazirmatn', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.sidebar-item {
    transition: all 0.3s ease;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    border-right: 3px solid #ffd700;
    color: #ffd700;
}

.table-container {
    scrollbar-width: thin;
    scrollbar-color: #ffd700 #1a1a2e;
}

.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: #1a1a2e;
}

.table-container::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 3px;
}

.form-input {
    background: #1a1a2e;
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(to left, #ffd700, #b7791f);
    color: #0f0f23;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #1a1a2e;
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #0f0f23;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-paid {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.status-pending {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.status-overdue {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Dark Theme Base Colors */
.bg-dark-secondary { background-color: #1a1a2e; }
.bg-dark-tertiary  { background-color: #16213e; }
.text-yellow-primary { color: #ffd700; }
.border-yellow-primary { border-color: #ffd700; }