
/* sms - brodcast tab style */
.sms-container {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
}
.sms-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}
.sms-container p {
    font-size: 16px;
    color: #777;
}
.sms-container p strong {
    font-size: 20px;
    color: #0073aa;
}
.sms-container textarea {
    width: 100%;
    padding: 10px;
    margin: 0 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #555;
}
.sms-container .char-limit {
    font-size: 14px;
    color: #999;
    text-align: left;
}
.sms-container button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}
.sms-container button:hover {
    background-color: #005f8d;
}




.notification-bar {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Success Notification */
.notification-bar.success {
    background-color: #28a745; /* Green */
}

/* Error Notification */
.notification-bar.error {
    background-color: #dc3545; /* Red */
}

/* Close Button */
.notification-bar .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    font-weight: bold;
}

.notification-bar .close-btn:hover {
    color: #000;
}


/* Style the form to display all elements in a single row */
.sms-credit-history-form {
    display: flex;
    align-items: center; /* Aligns items vertically centered */
    gap: 10px; /* Space between each item */
    flex-wrap: nowrap; /* Ensures the elements do not wrap to the next line */
    justify-content: flex-start; /* Aligns the items to the left */
}

/* Label styling */
.sms-credit-history-form label {
    margin-right: 5px; /* Space between label and input */
    white-space: nowrap; /* Prevents labels from wrapping */
}

/* Input field styling */
.sms-credit-history-form input {
    padding: 5px;
    margin-right: 10px; /* Space between input fields */
    width: 150px; /* You can adjust the width of the inputs */
}

/* Button styling */
.sms-credit-history-form button {
    padding: 5px 10px;
    background-color: #007cba;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

/* Optional: Hover effect for the button */
.sms-credit-history-form button:hover {
    background-color: #005f8c;
}

/* Prevent form overflow and ensure it stays within the container */
.sms-credit-history-form {
    overflow: hidden;
}

/* Optional: In case you have very narrow screens, you may want to use media query */
@media (max-width: 768px) {
    /* On smaller screens, make form items stack vertically */
    .sms-credit-history-form {
        flex-direction: column;
        align-items: flex-start;
    }

    .sms-credit-history-form input,
    .sms-credit-history-form button {
        width: 100%; /* Make inputs and button take full width */
        margin-bottom: 10px; /* Add spacing between elements */
    }
}


.sms-container .relax-sms-form {
    text-align: left;
}
.sms-container .relax-sms-form .rsf-select-users-wrap {
    display: none;
}
.sms-container .relax-sms-form .rsf-select-users-wrap.show {
    display: block;
}
span.rsf-field-label {
    display: block;
    margin: 15px 0 5px;
}
/* sms - brodcast tab style */