.sr-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.sr-modal-overlay.show {
    display: flex;
}

.sr-modal-content {
    background: white;
    border-radius: 12px;
    padding: 32px 24px 24px;
    max-width: 400px;
    width: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sr-modal-title {
    color: #0C0C20;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 24px;
    text-align: left;
}

.sr-modal-body {
    margin-bottom: 16px;
}

.sr-field-group {
    position: relative;
}

.sr-field-label-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.sr-field-asterisk {
    color: #BB4A92;
    font-size: 16px;
    font-weight: 700;
}

.sr-field-label {
    color: #0C0C20;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.sr-input-container {
    position: relative;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.sr-school-input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #0C0C20;
    background: white;
    box-sizing: border-box;
}

.sr-school-input::placeholder {
    color: #7F7F7F;
}

.sr-school-input:focus {
    outline: none;
}

.sr-input-container:focus-within {
    border-color: #BB4A92;
}

.sr-school-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sr-school-option {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    color: #0C0C20;
    border-bottom: 1px solid #F0F0F0;
}

.sr-school-option:last-child {
    border-bottom: none;
}

.sr-school-option:hover {
    background: #FAF8F7;
}

.sr-modal-footer {
    margin-bottom: 24px;
    text-align: right;
}

.sr-modal-change-link {
    color: #BB4A92;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    cursor: pointer;
    display: inline-block;
}

.sr-modal-change-link:hover {
    text-decoration: underline;
}

.sr-modal-button-container {
    display: flex;
    justify-content: center;
}

.sr-modal-confirm-btn {
    background: #BB4A92;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    cursor: pointer;
    transition: background 0.2s;
}

.sr-modal-confirm-btn:hover {
    background: #AD4091;
}

@media (max-width: 767px) {
    .sr-modal-content {
        max-width: 90%;
        width: 90%;
        padding: 24px;
        margin: 0 auto;
    }

    .sr-input-container {
        width: 100%;
        max-width: 100%;
    }

    .sr-modal-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 16px;
    }

    .sr-modal-body {
        margin-bottom: 12px;
    }

    .sr-field-label-row {
        margin-bottom: 6px;
    }

    .sr-field-label {
        font-size: 14px;
        line-height: 20px;
    }

    .sr-field-asterisk {
        font-size: 14px;
    }

    .sr-school-input {
        font-size: 15px;
        padding: 12px 14px;
    }

    .sr-school-dropdown {
        max-height: 140px;
    }

    .sr-school-option {
        font-size: 14px;
        padding: 10px 14px;
    }

    .sr-modal-footer {
        margin-bottom: 16px;
    }

    .sr-modal-change-link {
        font-size: 12px;
    }

    .sr-modal-confirm-btn {
        font-size: 16px;
        padding: 12px 32px;
    }
}
