
.pagination .page-link {
    color: #0056b3;
    border: 1px solid #dee2e6;
    margin: 0 2px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #0056b3;
    color: white;
    border-color: #0056b3;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/*.welcome-card {*/
/*    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);*/
/*    border: none;*/
/*}*/

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card-title {
    font-weight: 600;
    color: #0056b3;
}


.list-group-item:hover {
    background-color: #f8f9fa;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.welcome-card {
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: none;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 5px 0;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.auth-required-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-required-container .card {
    width: 100%;
    max-width: 500px;
}

.auth-icon {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .quick-stats .col-md-4 {
        margin-bottom: 15px;
    }

    .welcome-card .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .avatar-circle {
        margin: 0 auto 15px;
    }
}
.text-orange {
    color: #fd7e14;
}