body {
    font-family: "Asap", sans-serif;
    scroll-behavior: smooth;
}

.text-ag-primary {
    color: #ece819 !important;
}

.text-ag-secondary {
    color: #04034f !important;
}

.btn-ag-primary {
    background-color: #ece819 !important;
    color: #04034f !important;
    border: none;
}

.btn-ag-primary:hover {
    background-color: #04034f !important;
    color: #ece819 !important;
}

.btn-ag-secondary {
    background-color: #04034f !important;
    color: #ece819 !important;
    border: none !important;
}

.btn-ag-secondary:hover {
    background-color: #ece819 !important;
    color: #04034f !important;
}

.btn-ag {
    background-color: #ece819 !important;
    color: #04034f !important;
    border: none;
    font-weight: bold;
}

.btn-ag:hover {
    background-color: #04034f !important;
    color: #ece819 !important;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #04034f;
    text-align: center;
}

.footer {
    background-color: #04034f;
    color: #ece819;
    padding: 20px 0;
    text-align: center;
}

.bg-ag-primary {
    background-color: #ece819 !important;
}

.bg-ag-primary-50 {
    background-color: rgba(236, 232, 25, 0.5) !important;
}

.bg-ag-secondary {
    background-color: #04034f !important;
}

.bg-ag-secondary-50 {
    background-color: rgba(4, 3, 79, 0.5) !important;
}

.border-ag-primary {
    border-color: #ece819 !important;
}

.border-ag-secondary {
    border-color: #04034f !important;
}

.color-ag-primary {
    color: #ece819 !important;
}

.color-ag-secondary {
    color: #04034f !important;
}

.custom-radius {
    border-radius: 1rem;
}

/* Dashboard Specific Styles */
.dashboard-header {
    background: linear-gradient(135deg, #ece819 0%, #f5f543 100%);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(236, 232, 25, 0.3);
}

.stat-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.module-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.module-card .card-header {
    border-bottom: none;
    padding: 1.5rem;
}

.module-card .card-body {
    padding: 1.5rem;
}

.activity-item {
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 10px;
}

.activity-item:hover {
    background-color: rgba(236, 232, 25, 0.05);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(236, 232, 25, 0.1);
}

.btn-clicked {
    transform: scale(0.95);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-header h1 {
        font-size: 1.5rem;
    }

    .dashboard-header h2 {
        font-size: 1.2rem;
    }

    .stat-card .card-body {
        padding: 1rem;
    }

    .module-card .card-header,
    .module-card .card-body {
        padding: 1rem;
    }
}

/* Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 10;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ece819;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #04034f;
}

/* Login & Auth ortak stilleri */
.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.login-header {
    background: #04034f;
    color: #ece819;
    padding: 2rem;
    text-align: center;
}

.login-header h2 {
    margin: 0;
    font-weight: 600;
}

.login-body {
    padding: 2rem;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #04034f;
    box-shadow: 0 0 0 0.2rem rgba(4, 3, 79, 0.25);
}

.btn-login, .btn-change {
    background: #04034f;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    color: #ece819;
}

.btn-login:hover, .btn-change:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.alert {
    border-radius: 10px;
    border: none;
}

.form-label {
    font-weight: 500;
    color: #04034f;
    margin-bottom: 8px;
}

.security-info {
    background: #ece819;
    color: #04034f;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 18px;
    font-size: 15px;
}

.password-requirements {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}
