/* Outel Call Booking - MVP */

.outel-cb {
    width: 100%;
    padding: 30px 15px;
    box-sizing: border-box;
}

.outel-cb-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15,23,42,.07);
}

.outel-cb-header {
    text-align: center;
    margin-bottom: 28px;
}

.outel-cb-header h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.outel-cb-header p {
    margin: 0;
    color: #6b7280;
}

.outel-cb-date {
    display: block;
    margin-bottom: 24px;
}

.outel-cb-date span,
.outel-cb-label,
.outel-cb-fields span {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #374151;
}

.outel-cb-date input,
.outel-cb-fields input,
.outel-cb-fields textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 13px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font: inherit;
    background: #fff;
}

.outel-cb-slots {
    margin-bottom: 25px;
}

.outel-cb-slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.outel-cb-slot {
    min-height: 46px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font: inherit;
}

.outel-cb-slot.selected {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.outel-cb-slot.booked {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.outel-cb-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.outel-cb-fields .full {
    grid-column: 1 / -1;
}

.outel-cb-submit {
    width: 100%;
    margin-top: 18px;
    padding: 13px 20px;
    border: 1px solid #2563eb;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

.outel-cb-submit:hover:not(:disabled) {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.outel-cb-submit:disabled {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #9ca3af;
    opacity: 1;
    cursor: not-allowed;
}

.outel-cb-message {
    margin-top: 14px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 700px) {
    .outel-cb-card {
        padding: 22px;
    }
    .outel-cb-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .outel-cb-fields {
        grid-template-columns: 1fr;
    }
    .outel-cb-fields .full {
        grid-column: auto;
    }
}


.outel-cb-contact-note {
    grid-column: 1 / -1;
    margin-top: 2px;
    margin-bottom: -6px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
}


/* Outel Call Booking - Refined headings */
.outel-cb-header h2 {
    color: #2563eb;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.35;
}

.outel-cb-date span,
.outel-cb-label,
.outel-cb-fields > label > span {
    color: #2563eb;
    font-size: 16px;
    font-weight: 700;
}

.outel-cb-contact-note {
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}
