.empty-state-wrapper {
    width: 100%;
    padding: 60px 20px;
}

.empty-state {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 50%;
    position: relative;
}

.empty-state-icon::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 0;
}

.empty-state-icon i {
    font-size: 48px;
    color: #91699c;
    position: relative;
    z-index: 1;
}

.empty-state-content {
    margin-top: 20px;
}

.empty-state-title {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
    line-height: 1.4;
}

.empty-state-message {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

.empty-state-action {
    margin-top: 24px;
}

.empty-state-action .btn {
    min-width: 150px;
    padding: 10px 24px;
    font-weight: 500;
}

.empty-state-action .btn-primary {
    color: #fff !important;
    background-color: #142fdb !important;
    border-color: #142fdb !important;
    padding: 10px !important;
    max-width: 200px;
    margin: auto;
    margin-top: 20px;
}

.empty-state-action .btn-primary:hover,
.empty-state-action .btn-primary:focus,
.empty-state-action .btn-primary:active {
    color: #fff !important;
    background-color: #0f27c3 !important;
    border-color: #0f27c3 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .empty-state-wrapper {
        padding: 40px 15px;
    }
    
    .empty-state-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .empty-state-icon::before {
        width: 64px;
        height: 64px;
    }
    
    .empty-state-icon i {
        font-size: 36px;
    }
    
    .empty-state-title {
        font-size: 18px;
    }
    
    .empty-state-message {
        font-size: 14px;
    }
}

/* Night mode support */
.night-mode .empty-state-icon {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

.night-mode .empty-state-icon::before {
    background: rgba(45, 55, 72, 0.8);
}

.night-mode .empty-state-title {
    color: #e2e8f0;
}

.night-mode .empty-state-message {
    color: #a0aec0;
}

