.lashroom-consent-wrapper {
    font-family: 'Inter', 'Roboto', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.lashroom-consent-wrapper * {
    box-sizing: border-box;
    max-width: 100%;
}

.lashroom-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.lashroom-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.aftercare-card {
    border-left: 5px solid #ff758c;
}

.allergies-card {
    border-left: 5px solid #ff7eb3;
}

.lashroom-card h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.lashroom-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.lashroom-form-row {
    display: flex;
    gap: 20px;
}

.lashroom-form-row .lashroom-form-group {
    flex: 1;
}

@media (max-width: 600px) {
    .lashroom-form-row {
        flex-direction: column;
        gap: 0;
    }
}

.lashroom-form-group {
    margin-bottom: 20px;
}

.lashroom-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.lashroom-form-group input[type="text"],
.lashroom-form-group input[type="email"],
.lashroom-form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #edf2f7;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8fafc;
}

.lashroom-form-group input:focus {
    outline: none;
    border-color: #ff758c;
    box-shadow: 0 0 0 3px rgba(255, 117, 140, 0.2);
    background: #fff;
}

/* Checkbox styling */
.lashroom-agreement-text {
    margin: 30px 0;
    padding: 15px;
    background: #f7fafc;
    border-radius: 8px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #cbd5e0;
}

.checkbox-container input:checked ~ .checkmark {
    background-image: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.agreement-label {
    line-height: 1.4;
    color: #2d3748;
}

/* Signature Pad */
.lashroom-signature-wrapper {
    margin-bottom: 25px;
}

.lashroom-signature-wrapper label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #4a5568;
}

.signature-pad-container {
    position: relative;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    background: #fafafa;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: crosshair;
}

.signature-pad {
    width: 100%;
    height: 250px;
    display: block;
    touch-action: none;
}

.lc-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.lc-btn-secondary {
    background: #edf2f7;
    color: #4a5568;
}

.lc-btn-secondary:hover {
    background: #e2e8f0;
}

.lc-btn-primary {
    background-image: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%);
    color: white;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 117, 140, 0.4);
}

.lc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 117, 140, 0.6);
}

.lc-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.lashroom-message {
    margin-bottom: 20px;
}

.lc-alert {
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

.lc-alert-error {
    background-color: #fed7d7;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.lc-alert-success {
    background-color: #c6f6d5;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}
