/**
 * VeroCall Try Conversation Forms
 * CSS Styles
 */

 .verocall-multistep-form {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
}

.verocall-form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.verocall-form-step h2 {
    color: #2c5272;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4a4a4a;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control {
    height: 45px;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23555555%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 0.65rem auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Radio buttons & checkboxes styling */
.radio-options label,
.checkboxes label {
    display: block;
    padding: 10px 0;
    cursor: pointer;
}

.radio-options input[type="radio"],
.checkboxes input[type="checkbox"] {
    margin-right: 10px;
}

/* Buttons and actions */
.form-actions {
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-end; /* Right-justify the button */
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}



.btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background-color: #0039d7;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #0030b8;
}

/* Navigation links */
.verocall-prev-step,
.verocall-help-link,
.skip-link,
.create-account-link {
    color: #666;
    text-decoration: none;
    margin-right: 15px;
    font-size: 16px;
}

.verocall-prev-step:hover,
.verocall-help-link:hover,
.skip-link:hover,
.create-account-link:hover {
    color: #0039d7;
    text-decoration: underline;
}

/* Specific step styles */
.phone-number {
    font-size: 32px;
    font-weight: bold;
    color: #0039d7;
    margin: 20px 0;
}

.call-instructions {
    font-size: 18px;
    line-height: 1.5;
}

.user-phone,
.user-email,
.timer {
    font-weight: 600;
}

.call-summary {
    background-color: #f7f9fc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.summary-preview {
    margin-top: 15px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

/* Modal styles */
.verocall-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.verocall-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 25px;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.verocall-close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.verocall-close-modal:hover {
    color: #333;
}

/* Checkbox columns */
.checkbox-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-column {
    flex: 1;
    min-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .verocall-form-container {
        padding: 15px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .verocall-modal-content {
        margin: 20% auto;
        width: 90%;
    }
}




/* Better approach for styling the disabled options in selects */

/* Style the select element itself - basic styling all browsers support */
select {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    appearance: none; /* Remove default arrow */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23555555%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 0.65rem auto;
}

/* These styles will apply to browsers that support styling the options */
option {
    padding: 8px 12px;
    font-weight: normal;
    color: #333;
}

option:disabled {
    color: #aaa;
    font-weight: 300;
    opacity: 0.7;
    font-style: italic;
}

/* Firefox specific styles - Firefox does support option styling */
@-moz-document url-prefix() {
    option:disabled {
        color: #aaa !important;
        font-weight: 300 !important;
        opacity: 0.7 !important;
        background-color: #f5f5f5 !important;
    }
    
    option:not(:disabled) {
        color: #333 !important;
        font-weight: 500 !important;
    }
}

/* Additional style for the option groups - helpful for categorizing options */
optgroup {
    font-weight: bold;
    color: #2c5272;
    padding: 5px 0;
}

/* This helps distinguish disabled options visually with a lighter background */
select option:disabled {
    background-color: #f5f5f5;
}

/* For specific browser versions - Chrome and other Webkit browsers */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        text-indent: 5px;
    }
    
    /* Target Chrome specifically */
    @supports (-webkit-appearance:none) {
        select option:disabled {
            background-color: #f5f5f5;
        }
    }
}


/* Triangle styling */
.triangle-left {
    display: inline-block;
    margin-right: 3px;
}

.triangle-right {
    display: inline-block;
    margin-left: 3px;
}


/* Improved styling for the account creation button */
.create-account-btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    background-color: #0039d7;
    color: white !important;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 15px 0;
}

.create-account-btn:hover {
    background-color: #002cb4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    text-decoration: none;
}

.create-account-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style for the secondary "Maybe later" option */
.maybe-later-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.maybe-later-btn:hover {
    background-color: #ebebeb;
    color: #333;
}

/* Container styling for buttons */
.action-buttons {
    margin-top: 30px;
}