.sb-widget-score-container #csat-score.sb-widget-score {
    color: #15334e;
}

.powered-by {
    display: block !important;
    text-align: center !important;
    margin: 10px auto !important;
    padding: 4px 10px !important;
    font-size: 10px !important;
    border-radius: 5px !important;
    color: #fff !important;
    text-decoration: none !important;
}

.button-container {
    position: fixed;
    top: 25vh; /* Initial position */
    right: 0;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Ensure a consistent 10px gap */
    z-index: 99;
}

.blremoteButton,
.verifyButton {
    background-color: #091d3e;
    padding: 13px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    line-height: 12px;
    border: 2px solid white;
    border-right: none;
    transition: 0.35s;
    text-align: center;
}

.blremoteButton a,
.verifyButton a {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: bold;
    display: block;
    line-height: 12px;
    letter-spacing: 1.25px;
    max-width: 73px;
    text-align: center;
    position: relative;
    line-height: 12px; /* Added this based on your adjustment */
}

.blremoteButton a:before,
.verifyButton a:before {
    content: '';
    width: 25px;
    height: 25px;
    background-size: contain;
    background-position: center center;
    display: block;
    position: relative;
    margin: 0 auto 7px auto;
}

.blremoteButton a:before {
    background-image: url('/wp-content/uploads/2022/02/headset-white.png');
}

.verifyButton a:before {
    background-image: url('/wp-content/uploads/2025/01/fingerprint-white-1.png');
}

.blremoteButton:hover,
.verifyButton:hover {
    background-color: #008fd1;
    transition: 0.35s;
}


.blremoteButton a:hover,
.verifyButton a:hover {
    color: #FFFFFF !important; /* Keep link color white on hover */
    cursor: pointer;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .button-container {
        top: 25vh; /* Adjust overall container for medium screens */
    }
}

@media (min-width: 900px) {
    .button-container {
        top: 25vh; /* Adjust for large screens if needed */
    }
}

/* Flyout Container Styles */
.otp-form-container {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 2000;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

.otp-form-container.open {
    display: block;
    transform: translateX(0);
}

.otp-form-content {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    text-align: center;
}

.otp-form-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Input field styling */
.otp-form-content input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.otp-form-content input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.otp-form-content button {
    width: 100%;
    padding: 12px 20px;
    background-color: #16334E;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.otp-form-content button:hover {
    background-color: #218838;
}

/* Success/Error Message Styles */
.message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
}

.message.success {
    color: #fff;
}

.message.error {
    color: #721c24;
}

/* Agent Information */
.agent-info {
    margin-top: 10px;
    display: flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    max-width: 300px;
}

.agent-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-details {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.agent-title {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* Close Button Styling */
.closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: #cc444b;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    z-index: 101;
}

.closeBtn:hover {
    background-color: darkred;
}

.verification-message {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f0f4f8;
    border-left: 3px solid #16334E;
    font-size: 14px;
    color: #333;
}

.verification-message p {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4;
}

.no-arrows {
    -moz-appearance: textfield;
    appearance: none;
}

.no-arrows::-webkit-outer-spin-button,
.no-arrows::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add these styles to specifically target input fields with the no-arrows class */
input.no-arrows {
    padding-left: 10px; /* Adjust the padding value as needed */
    font-weight: bold;
}

