/* Public Styles for Relayout Dental Suite */

/* Booking Form */
.rds-booking-form-wrapper {
    max-width: 600px;
    margin: 30px auto;
    padding: 40px 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.rds-booking-form-wrapper h2 {
    margin: 0 0 30px;
    text-align: center;
    color: #364153;
}

.rds-form .form-group {
    margin-bottom: 20px;
}

.rds-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #364153;
}

.rds-form input[type="text"],
.rds-form input[type="email"],
.rds-form input[type="tel"],
.rds-form input[type="date"],
.rds-form input[type="time"],
.rds-form select,
.rds-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.rds-form input:focus,
.rds-form select:focus,
.rds-form textarea:focus {
    outline: none;
    border-color: #00AEEF;
    box-shadow: 0 0 0 1px #00AEEF;
}

.rds-form textarea {
    resize: vertical;
}

.rds-submit-button {
 width: 100% !important;
    padding: 14px !important;
    background: #00AEEF !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
}

.rds-submit-button:hover {
    background: #00AEEF !important;
}

.rds-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Messages */
#rds-booking-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
}

#rds-booking-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

#rds-booking-message.error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

/* Signature Pad */
.rds-signature-pad {
    border: 2px dashed #ddd;
    border-radius: 4px;
    background: #fafafa;
    margin: 20px 0;
}

.rds-signature-canvas {
    width: 100%;
    height: 200px;
}

.rds-signature-controls {
    text-align: right;
    margin-top: 10px;
}

.rds-clear-signature {
    padding: 8px 16px;
    background: #f44336;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.rds-clear-signature:hover {
    background: #d32f2f;
}

/* Loading */
.rds-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.rds-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #2271b1;
    border-radius: 50%;
    animation: rds-spin 1s linear infinite;
}

@keyframes rds-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .rds-booking-form-wrapper {
        margin: 20px;
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .rds-submit-button,
    .rds-signature-controls {
        display: none;
    }
}


.row {
    width: 100%;
    overflow: auto;
    gap: 24px;
    display: flex;
}

.col-50 {
    width: 50%;
    float: left;
    box-sizing: border-box;
   
}