.guides_empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    text-align: center;
}

.guides_empty_icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.2);
}

.guides_empty_text {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 32px;
    max-width: 400px;
}

.guides_empty_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.guides_empty_btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.guides_empty_btn:active {
    transform: translateY(0);
}

.guides_empty_btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .guides_empty {
        padding: 80px 20px;
    }
    
    .guides_empty_icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .guides_empty_text {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .guides_empty_btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
