#wawp-phone-bar {
    position: relative;
    width: 100%;
    padding: 14px 22px;
    margin-bottom: 20px;
    margin-top: 20px;
    background: #fff8d2;
    border: 1px solid #ffe58f;
    border-left: 4px solid #ffcf00;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

#wawp-phone-bar .button {
    border-radius: 5px;
}

#wawp-send-otp,
#wawp-save-phone {
    background: #000;
    color: #fff;
    margin-inline-start: auto;
}

#wawp-confirm-otp {
    background: #22c55e;
    color: #fff;
}

#wawp-otp-input,
#wawp-new-phone {
    border-radius: 5px;
}

#wawp-new-phone {
    width: 180px !important;
}

#wawp-otp-input {
    width: 110px !important;
}

#wawp-edit-phone {
    cursor: pointer;
    color: #555;
    margin-left: 6px;
}

#wawp-bar-close {
    position: absolute;
    top: 4px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.wawp-hide {
    display: none !important;
}

.wawp-phone-bar-verified {
    background: #e6ffed !important;
    border-color: #22c55e !important;
}

.wawp-verified-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #059669;
}

/* Global Bar Styles */
.wawp-global-bar-wrapper {
    width: 100%;
    z-index: 9999;
    background: #fff8d2;
}

.wawp-global-bar-wrapper #wawp-phone-bar {
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    max-width: 100%;
}

@media (max-width: 768px) {
    #wawp-phone-bar {
        padding: 10px;
    }
    #wawp-new-phone, #wawp-otp-input {
        flex-grow: 1;
    }
    #wawp-send-otp, #wawp-save-phone {
        margin-inline-start: 0;
        width: 100%;
    }
}