/* 
 * Empty content message styles
 * Bo'sh sahifalar uchun universal dizayn
 */

.empty-content-wrapper {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.empty-content-container {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.empty-content-icon {
    font-size: 80px;
    color: #011247;
    margin-bottom: 25px;
    opacity: 0.3;
}

.empty-content-title {
    color: #011247;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.empty-content-text {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-back-home {
    display: inline-block;
    padding: 12px 30px;
    background: #011247;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 18, 71, 0.3);
    color: white;
}

.btn-back-home i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .empty-content-container {
        padding: 40px 20px;
    }
    
    .empty-content-icon {
        font-size: 60px;
    }
    
    .empty-content-title {
        font-size: 20px;
    }
    
    .empty-content-text {
        font-size: 14px;
    }
}

