/* chatbox.css */

/* Memastikan teks deskripsi selalu 1 baris */
.rtc-card-content p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 1.6;
}
.rtc-card-content strong {
    font-size: 18px;
}

.rtc-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100%;
    gap: 10px;
    padding: 0 5px;
    box-sizing: border-box;
}

.rtc-contact-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s;

    max-width: 180px;
    flex-grow: 1;
    flex-shrink: 0;
    min-width: 130px;

    margin-bottom: 5px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.rtc-contact-link:hover {
    transform: scale(1.05);
}

/* Colors and Icon Styles */
.rtc-whatsapp .rtc-icon-circle {
    background-color: #008751;
}
.rtc-whatsapp .rtc-admin-label {
    background-color: #03320f;
    color: #fff;
}
.rtc-booking-btn .rtc-icon-circle {
    background-color: red;
}
.rtc-booking-btn .rtc-admin-label {
    background-color: #03320f;
    color: #fff;
}

.rtc-icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.rtc-admin-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px 0 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    flex-grow: 1;
    height: 40px;
    margin-left: -15px;
    z-index: 1;
    white-space: nowrap;
}

/* UTAMA: PENYESUAIAN MOBILE */
@media (max-width: 1000px) {
    .rtc-contact-buttons {
        gap: 8px;
    }

    .rtc-contact-link {
        max-width: 150px;
        min-width: 120px;
    }

    .rtc-icon-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .rtc-admin-label {
        height: 32px;
        font-size: 10px;
        padding: 0 8px 0 15px;
        margin-left: -12px;
    }
}
