﻿/*CLS FORM*/
.ei-wrap {
    max-width: 990px;
    margin: 2rem auto;
    padding: 0 1.25rem 3rem;
    min-height: 100vh;
}

/* ── Page header ── */
.ei-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    margin-bottom: 1.75rem;
}

    .ei-header h1 {
        margin: 0;
        font-size: 1.35rem;
        font-weight: 700;
        line-height: 1.35;
    }

/* ── Section card ── */
.ei-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}

    .ei-card:hover {
        box-shadow: 0 4px 18px rgba(0,0,0,.09);
    }

.ei-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #115ba4;
    margin: 0 0 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* ── Type toggle buttons ── */
.ei-type-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ei-type-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 10px;
    border: 2px solid #cbd5e1;
    background: #fff;
    font-size: .9375rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all .18s;
    min-width: 220px;
    justify-content: center;
}

    .ei-type-btn:hover {
        border-color: #115ba4;
        color: #115ba4;
        background: #eff6ff;
    }

    .ei-type-btn.active {
        background: linear-gradient(135deg, #115ba4 0%, #115ba4 100%);
        border-color: transparent;
        color: #fff;
      /*  box-shadow: 0 1px 10px rgba(37,99,235,.35);*/
    }

/* ── Two-col grid ── */
.ei-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem 1.5rem;
}

.ei-grid-3 {
    display: grid;
    grid-template-columns: 5fr 4fr 3fr;
    gap: 1rem 1.5rem;
}

.ei-full {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .ei-grid, .ei-grid-3 {
        grid-template-columns: 1fr;
    }

    .ei-full {
        grid-column: 1;
    }
}

/* ── Field wrapper ── */
.ei-field {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

/* ── Labels ── */
.form-label {
    font-weight: 600;
    font-size: 14px;
    color: #475569;
    letter-spacing: .4px;
}

.req::after {
    content: ' *';
    color: #ef4444;
}

.opt {
    font-weight: 400;
    color: #94a3b8;
    font-size: .75rem;
}

/* ── Inputs ── */
.form-control, .form-select, .ei-textarea {
    padding: .55rem .85rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 7px;
    font-size: .9375rem;
    color: #1e293b;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

    .form-control:focus, .form-select:focus, .ei-textarea:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.18);
    }

    .form-control.invalid, .form-select.invalid {
        border-color: #ef4444;
    }

    .form-control::placeholder, .ei-textarea::placeholder {
        color: #94a3b8;
    }

.form-select {
    appearance: auto;
    cursor: pointer;
}

.ei-textarea {
    resize: vertical;
    min-height: 90px;
}

/* ── ValidationMessage ── */
.ei-val {
    color: #dc2626;
    font-size: .775rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* ── Radio / Checkbox group ── */
.ei-radio-group, .ei-check-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: .25rem;
}

.ei-radio-label, .ei-check-label {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .9375rem;
    cursor: pointer;
    font-weight: 500;
    color: #334155;
}

    .ei-radio-label input, .ei-check-label input {
        accent-color: #2563eb;
        cursor: pointer;
    }



/* ── Success ── */
.ei-success {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #166534;
    font-size: .9375rem;
    margin-bottom: 1.5rem;
}

.ei-success-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ── Actions ── */
.ei-actions {
    display: flex;
    justify-content: center;
    gap: .875rem;
    padding-top: 1.25rem;
    border-top: 2px solid #e2e8f0;
    margin-top: 1.5rem;
}

.ei-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 2.25rem;
    border: none;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .1s;
}

    .ei-btn:active {
        transform: scale(.98);
    }

    .ei-btn:disabled {
        opacity: .6;
        cursor: not-allowed;
    }

.ei-btn-primary {
    background: linear-gradient(135deg,#1e3a8a 0%,#2563eb 100%);
    color: #fff;
}

    .ei-btn-primary:hover:not(:disabled) {
        background: linear-gradient(135deg,#1e40af 0%,#1d6bf3 100%);
    }

.ei-btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
}

    .ei-btn-secondary:hover:not(:disabled) {
        background: #e2e8f0;
    }

.ei-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ei-spin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes ei-spin {
    to {
        transform: rotate(360deg);
    }
}

/*CHILDCARE EBT*/
.cc-wrap {
    max-width: 990px;
    margin: 2rem auto;
    padding: 0 1.25rem 3rem;
    min-height:100vh;
}

/* ── Header ── */
.cc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    margin-bottom: 1.75rem;
}

    .cc-header h1 {
        margin: 0;
        font-size: 1.35rem;
        font-weight: 700;
        line-height: 1.35;
    }

/* ── Alerts ── */
.cc-alert {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: .9rem;
    font-weight: 500;
}

    .cc-alert svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

.cc-alert-ok {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.cc-alert-err {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ── Section cards ── */
.cc-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    transition: box-shadow .2s;
    overflow: hidden;
}

    .cc-section:hover {
        box-shadow: 0 4px 18px rgba(0,0,0,.09);
    }

.cc-section-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: -1.75rem -2rem 1.25rem;
    padding: .9rem 2rem .75rem;
    border-bottom: 2px solid #e2e8f0;
    background: #f8fafc;
}

.cc-badge {
    width: 26px;
    height: 26px;
    background: #1e3a8a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cc-section-head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #115ba4;
}

.cc-section-body {
    padding: 0;
}

/* ── Two-column grid ── */
.cc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
}

.cc-full {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .cc-grid {
        grid-template-columns: 1fr;
    }

    .cc-full {
        grid-column: 1;
    }
}

/* ── Field wrapper ── */
.cc-field {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

/* ── Labels ── */
.form-label {
    font-weight: 600;
    font-size: 14px;
    color: #475569;
    letter-spacing: .4px;
}

    .form-label.req::after {
        content: ' *';
        color: #ef4444;
    }

/* ── Inputs (base) ── */
.form-control, .cc-select, .cc-textarea {
    padding: .55rem .85rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 7px;
    font-size: .9375rem;
    color: #1e293b;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

    .form-control:focus, .cc-select:focus, .cc-textarea:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.18);
    }



.cc-select {
    appearance: auto;
    cursor: pointer;
}

.cc-textarea {
    resize: vertical;
    min-height: 110px;
}

/* ── Validation message ── */
.cc-val {
    color: #dc2626;
    font-size: .775rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* ── Radio buttons ── */
.cc-radio-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: .25rem;
}

.cc-radio-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

    .cc-radio-item input[type="radio"] {
        width: 17px;
        height: 17px;
        accent-color: #2563eb;
        cursor: pointer;
        flex-shrink: 0;
    }

    .cc-radio-item label {
        font-size: .9375rem;
        color: #1e293b;
        cursor: pointer;
        margin: 0;
        font-weight: 400;
    }

/* ── Buttons ── */
.cc-actions {
    display: flex;
    justify-content: center;
    gap: .875rem;
    padding-top: 1.25rem;
    border-top: 2px solid #e2e8f0;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 2.25rem;
    border: none;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .1s;
    /* to remove outline */
    outline: none;
	box-shadow: none; 
}

     .btn:focus,
		.btn:focus-visible,
		.btn:active:focus {
			outline: none;
			box-shadow: none;
		} 

    .btn:active {
        transform: scale(.98);
    }

    .btn:disabled {
        opacity: .6;
        cursor: not-allowed;
    }

.btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
}

    .btn-secondary:hover:not(:disabled) {
        background: #e2e8f0;
    }

.ei-btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
}

    .ei-btn-secondary:hover:not(:disabled) {
        background: #e2e8f0;
    }

.ei-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 2.25rem;
    border: none;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .1s;
}

    .ei-btn:active {
        transform: scale(.98);
    }

    .ei-btn:disabled {
        opacity: .6;
        cursor: not-allowed;
    }

/* ── Spinner ── */
.cc-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cc-spin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes cc-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Success ── */
.ei-success {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #166534;
    font-size: .9375rem;
    margin-bottom: 1.5rem;
}

.ei-success-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/*//SUD FORM*/



/* ── Inputs (base) ── */
.form-control, .cc-select, .cc-textarea {
    padding: .55rem .85rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 7px;
    font-size: .9375rem;
    color: #1e293b;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

    .form-control:focus, .cc-select:focus, .cc-textarea:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.18);
    }

.cc-select {
    appearance: auto;
    cursor: pointer;
}

.cc-textarea {
    resize: vertical;
    min-height: 130px;
}

/* ── Validation message ── */
.cc-val {
    color: #dc2626;
    font-size: .775rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* ── Buttons ── */
.cc-actions {
    display: flex;
    justify-content: center;
    gap: .875rem;
    padding-top: 1.25rem;
    border-top: 2px solid #e2e8f0;
    margin-top: 1.5rem;
}



.ei-btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
}

    .ei-btn-secondary:hover:not(:disabled) {
        background: #e2e8f0;
    }

.ei-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 2.25rem;
    border: none;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .1s;
}

    .ei-btn:active {
        transform: scale(.98);
    }

    .ei-btn:disabled {
        opacity: .6;
        cursor: not-allowed;
    }

/* ── Spinner ── */
.cc-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cc-spin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes cc-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Success ── */
.ei-success {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #166534;
    font-size: .9375rem;
    margin-bottom: 1.5rem;
}

.ei-success-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/*//WHISTE BLOWER*/

.form-control, .cc-select, .cc-textarea {
    padding: .55rem .85rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 7px;
    font-size: .9375rem;
    color: #1e293b;
    background: #fff;
    transition: border-color .15s,box-shadow .15s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

    .form-control:focus, .cc-select:focus, .cc-textarea:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.18);
    }

.cc-select {
    appearance: auto;
    cursor: pointer;
}

.cc-textarea {
    resize: vertical;
    min-height: 110px;
}

.cc-val {
    color: #dc2626;
    font-size: .775rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* Radio & Checkbox groups */
.cc-radio-group, .cc-check-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: .25rem;
}

.cc-radio-item, .cc-check-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    cursor: pointer;
}

    .cc-radio-item input[type="radio"],
    .cc-check-item input[type="checkbox"] {
        width: 17px;
        height: 17px;
        accent-color: #2563eb;
        cursor: pointer;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .cc-radio-item label,
    .cc-check-item label {
        font-size: .9375rem;
        color: #1e293b;
        cursor: pointer;
        margin: 0;
        font-weight: 400;
    }

/* Inline "other" text box */
.cc-inline-input {
    margin-top: .35rem;
    padding: .4rem .7rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 6px;
    font-size: .875rem;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
}

    .cc-inline-input:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.18);
    }

/* Acknowledgement highlight box */
.cc-ack-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: .75rem;
    font-size: .9rem;
    color: #1e3a5f;
    line-height: 1.55;
}

.cc-ack-box-alert {
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: .75rem;
    font-size: .9rem;
    line-height: 1.55;
}

/* Action buttons */
.cc-actions {
    display: flex;
    justify-content: center;
    gap: .875rem;
    padding-top: 1.25rem;
    border-top: 2px solid #e2e8f0;
    margin-top: 1.5rem;
}



.ei-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 2.25rem;
    border: none;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s,box-shadow .2s,transform .1s;
}

    .ei-btn:active {
        transform: scale(.98);
    }

.ei-btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
}

    .ei-btn-secondary:hover:not(:disabled) {
        background: #e2e8f0;
    }

.cc-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cc-spin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes cc-spin {
    to {
        transform: rotate(360deg);
    }
}

.ei-success {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #166534;
    font-size: .9375rem;
    margin-bottom: 1.5rem;
}

.ei-success-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Divider inside section */
.cc-divider {
    border: none;
    border-top: 1px dashed #e2e8f0;
    margin: 1.25rem 0;
}

.cc-sub-head {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #115ba4;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: .4rem;
    margin: 1.1rem 0 .75rem;
    grid-column: 1 / -1;
}

.cc-csz {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 1rem 1.5rem;
}

/*OCA REQUEST*/




.cc-csz {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 1rem 1.5rem;
}

.cc-sub-head {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #115ba4;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: .4rem;
    margin: 1.1rem 0 .75rem;
    grid-column: 1 / -1;
}


.form-control, .cc-select {
    padding: .55rem .85rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 7px;
    font-size: .9375rem;
    color: #1e293b;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    width: 100%;
    min-width: 0;
    font-family: inherit;
}

    .form-control:focus, .cc-select:focus {
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,.18);
    }

.cc-select {
    appearance: auto;
    cursor: pointer;
}

.cc-val {
    color: #dc2626;
    font-size: .775rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.cc-radio-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: .25rem;
}

.cc-radio-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    cursor: pointer;
    padding: .6rem .85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color .15s, background .15s;
}

    .cc-radio-item:hover {
        border-color: #2563eb;
        background: #f0f6ff;
    }

    .cc-radio-item.selected {
        border-color: #2563eb;
        background: #eff6ff;
    }

    .cc-radio-item input[type="radio"] {
        width: 17px;
        height: 17px;
        accent-color: #2563eb;
        cursor: pointer;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .cc-radio-item label {
        font-size: .9375rem;
        color: #1e293b;
        cursor: pointer;
        margin: 0;
        font-weight: 400;
        line-height: 1.45;
    }

.cc-actions {
    display: flex;
    justify-content: center;
    gap: .875rem;
    padding-top: 1.25rem;
    border-top: 2px solid #e2e8f0;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}



.cc-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cc-spin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes cc-spin {
    to {
        transform: rotate(360deg);
    }
}

.ei-success {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #166534;
    font-size: .9375rem;
    margin-bottom: 1.5rem;
}

.ei-success-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.ei-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .65rem 2.25rem;
    border: none;
    border-radius: 8px;
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .1s;
    font-family: inherit;
}

    .ei-btn:active {
        transform: scale(.98);
    }

.ei-btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
}

    .ei-btn-secondary:hover {
        background: #e2e8f0;
    }

@media (max-width: 768px) {
    .cc-wrap {
        padding: 0 1rem 2rem;
        margin: 1rem auto;
    }

    .cc-section {
        padding: 1.25rem 1.25rem;
    }

    .cc-section-head {
        margin: -1.25rem -1.25rem 1rem;
        padding: .75rem 1.25rem .65rem;
    }

    .cc-grid {
        gap: .85rem 1rem;
    }

    .cc-csz {
        grid-template-columns: 1fr 1fr;
    }

        .cc-csz .cc-field:first-child {
            grid-column: 1 / -1;
        }
}

@media (max-width: 640px) {
    .cc-wrap {
        padding: 0 .75rem 1.5rem;
        margin: .75rem auto;
    }

    .cc-header {
        padding: 1rem 1.1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .cc-section {
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: .875rem;
    }

    .cc-section-head {
        margin: -1rem -1rem .875rem;
        padding: .65rem 1rem .55rem;
    }

    .cc-grid {
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .cc-full {
        grid-column: 1;
    }

    .cc-csz {
        grid-template-columns: 1fr;
    }

        .cc-csz .cc-field:first-child {
            grid-column: 1;
        }

    .btn {
        width: 100%;
        justify-content: center;
        padding: .7rem 1rem;
    }

    .cc-actions {
        flex-direction: column;
        gap: .5rem;
    }
}

@media (max-width: 380px) {
    .cc-wrap {
        padding: 0 .5rem 1rem;
    }

    .form-control, .cc-select {
        font-size: .875rem;
        padding: .5rem .7rem;
    }

    .cc-header h1 {
        font-size: .9rem;
    }
}