.scb-open-trigger {
    cursor: pointer;
}

.scb-open-btn {
    background-color: #25D366;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.scb-open-btn:hover {
    background-color: #1ea952;
}

.scb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scb-modal-box {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    padding: 30px 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scb-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.scb-modal-close:hover {
    color: #000;
}

.scb-modal-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.scb-form-row {
    margin-bottom: 15px;
}

.scb-form-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.scb-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.scb-input:focus {
    outline: none;
    border-color: #25D366;
}

.scb-submit-btn {
    width: 100%;
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.scb-submit-btn:hover {
    background-color: #1ea952;
}

.scb-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.scb-form-message {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.scb-form-message.scb-success {
    color: #1a7d34;
}

.scb-form-message.scb-error {
    color: #c0392b;
}
