/* Host Contact Buttons Styles */
.host-contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 15px;
}

.host-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    min-width: 0;
    padding: 12px 10px;
    text-align: center;
}

.host-contact-btn i {
    font-size: 20px;
    margin: 0 auto;
    display: block;
}

.host-contact-btn span {
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .host-contact-buttons {
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .host-contact-btn {
        min-width: 0;
        flex: 1;
        padding: 10px 8px;
    }
    
    .host-contact-btn i {
        font-size: 18px;
    }
    
    .host-contact-btn span {
        font-size: 12px;
    }
}

