/* Home Page Styles - Clean & Simple */
.home-stats-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.home-stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.home-stats-card .card-body {
    padding: 1.5rem;
}

.home-stats-card .avatar-sm {
    width: 50px;
    height: 50px;
}

.home-stats-card .avatar-title {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 10px;
}

.home-stats-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: #212529;
}

.home-stats-card h5 {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    color: #6c757d;
}

.home-stats-card p {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card .table {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.service-card .table td {
    border: none;
    padding: 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid #f8f9fa;
}

.service-card .table th {
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.8rem;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.service-card .table tr:last-child td {
    border-bottom: none;
}

/* Service name styling */
.service-name {
    font-weight: 500;
    color: #212529;
    line-height: 1.3;
    font-size: 0.875rem;
}

.service-price {
    font-weight: 600;
    color: #28a745;
    font-size: 1rem;
}

.service-status {
    font-size: 0.75rem;
}

/* Service icon styling */
.service-card .avatar-sm {
    width: 32px;
    height: 32px;
}

.service-card .avatar-title {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.service-card .font-14 {
    font-size: 0.875rem !important;
}

.service-card .font-13 {
    font-size: 0.8rem !important;
}

.service-card .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Notification Styles */
.notification-item {
    padding: 1rem;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #667eea;
}


.notification-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.notification-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.notification-content {
    margin-left: 0.75rem;
}

.notification-title {
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Quick Actions */
.quick-action-btn {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    display: block;
    color: white;
    font-weight: 500;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}

.quick-action-btn i {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Page Title */
.page-title-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-title-box h4 {
    color: #212529;
    margin: 0;
    font-weight: 600;
}

.page-title-box .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.page-title-box .breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.page-title-box .breadcrumb-item.active {
    color: #6c757d;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f8f9fa;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.section-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.section-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Modal Styles */
.notification-modal .modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.notification-modal .modal-title {
    font-weight: 600;
    color: #212529;
}

.notification-list {
    max-height: 400px;
}

.notification-list-item {
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #667eea;  
    margin-bottom: 5px;
    border-radius: 12px;
}

.notification-list-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.notification-type {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.notification-type.info {
    background: #d1ecf1;
    color: #0c5460;
}

.notification-type.success {
    background: #d4edda;
    color: #155724;
}

.notification-type.warning {
    background: #fff3cd;
    color: #856404;
}

.notification-type.error {
    background: #f8d7da;
    color: #721c24;
}

/* Pagination Styles */
.notification-modal .pagination {
    margin-bottom: 0;
}

.notification-modal .pagination .page-link {
    border: 1px solid #dee2e6;
    color: #007bff;
    background-color: #fff;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.notification-modal .pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #0056b3;
}

.notification-modal .pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.notification-modal .pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
    cursor: not-allowed;
}

.notification-modal .pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

/* Pagination info text */
.notification-modal .text-muted.small {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-stats-card h3 {
        font-size: 1.5rem;
    }
    
    .quick-action-btn {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .quick-action-btn i {
        font-size: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-stats-card,
.service-card,
.notification-item {
    animation: fadeInUp 0.5s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
} 