:root {
    --background: #f8fafc;
    --surface: #ffffff;
    --sidebar: #1e293b;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --blue: #3b82f6;
    --blue-dark: #2563eb;
    --purple: #8b5cf6;
    --green: #059669;
    --green-bg: #ecfdf5;
    --yellow: #a16207;
    --yellow-bg: #fefce8;
    --red: #dc2626;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: var(--background);
    color: var(--text);
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

/* GİRİŞ SAYFASI */

.login-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 15% 10%,
            rgba(59, 130, 246, 0.15),
            transparent 30%),
        radial-gradient(circle at 85% 85%,
            rgba(139, 92, 246, 0.14),
            transparent 30%),
        var(--background);
}

.login-header {
    position: absolute;
    top: 30px;
    left: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: white;
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg,
            var(--blue),
            var(--purple));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 17px;
}

.logo-text span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.login-wrapper {
    width: 100%;
    flex: 1;
    display: grid;
    place-items: center;
    padding: 100px 24px 70px;
}

.login-card {
    width: min(440px, 100%);
    padding: 42px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.login-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 17px;
    background: #eff6ff;
    color: var(--blue);
    font-size: 27px;
    font-weight: 700;
}

.page-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.login-card h1 {
    margin: 9px 0 0;
    font-size: 36px;
    letter-spacing: -0.04em;
}

.login-description {
    margin: 12px 0 28px;
    color: var(--muted);
    line-height: 1.6;
}

.login-card form {
    display: grid;
    gap: 10px;
}

.login-card label {
    margin-top: 8px;
    color: var(--sidebar);
    font-size: 14px;
    font-weight: 700;
}

input,
select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid var(--border);
    border-radius: 13px;
    outline: none;
    background: white;
    color: var(--text);
}

input:focus,
select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.primary-button {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    border: 0;
    border-radius: 13px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg,
            var(--blue),
            var(--purple));
    transition: transform 0.2s ease;
}

.primary-button:hover {
    transform: translateY(-1px);
}

.form-error {
    min-height: 18px;
    margin: 4px 0 0;
    color: var(--red);
    font-size: 13px;
}

.login-footer {
    padding: 20px;
    color: #94a3b8;
    text-align: center;
    font-size: 12px;
}

/* PANEL ORTAK YAPI */

.portal-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    background: var(--sidebar);
    color: white;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 28px;
}

.sidebar-brand .logo-mark {
    flex-shrink: 0;
}

.sidebar-brand strong,
.sidebar-brand span {
    display: block;
}

.sidebar-brand span {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 11px;
}

.sidebar-menu {
    display: grid;
    gap: 6px;
    margin-top: 18px;
}

.sidebar-menu a {
    padding: 13px 15px;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 650;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.logout-button {
    height: 44px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: transparent;
    color: #cbd5e1;
}

.portal-content {
    min-width: 0;
    padding: 34px 38px 60px;
}

.portal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.portal-header h1 {
    margin: 7px 0 0;
    font-size: 30px;
    letter-spacing: -0.04em;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: white;
}

.user-avatar {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #eef2ff;
    color: var(--purple);
    font-weight: 900;
}

.user-box strong,
.user-box span {
    display: block;
}

.user-box span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.summary-card {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: white;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.035);
}

.summary-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
}

.summary-card strong {
    display: block;
    margin: 14px 0 7px;
    font-size: 31px;
    letter-spacing: -0.04em;
}

.summary-card span {
    color: var(--muted);
    font-size: 12px;
}

.summary-card.highlight {
    border: 0;
    color: white;
    background: linear-gradient(135deg,
            var(--blue-dark),
            #7c3aed);
}

.summary-card.highlight p,
.summary-card.highlight span {
    color: #e0e7ff;
}

/* TABLO */

.content-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
}

.content-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}

.content-card-header h2 {
    margin: 7px 0 0;
    font-size: 20px;
}

.agency-code {
    padding: 9px 12px;
    border-radius: 10px;
    background: #f1f5f9;
    color: var(--muted);
    font-size: 13px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
}

th,
td {
    padding: 16px 20px;
    border-bottom: 1px solid #edf2f7;
    text-align: left;
    font-size: 13px;
}

th {
    background: #fbfdff;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

td strong,
td small {
    display: block;
}

td small {
    margin-top: 4px;
    color: var(--muted);
}

.status {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 800;
}

.status.success {
    background: var(--green-bg);
    color: var(--green);
}

.status.pending {
    background: var(--yellow-bg);
    color: var(--yellow);
}

.empty-message {
    padding: 45px 20px;
    color: var(--muted);
    text-align: center;
}

/* ADMIN */

.admin-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.admin-actions p {
    margin: 0;
    color: var(--muted);
}

.add-button {
    padding: 13px 18px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg,
            var(--blue),
            var(--purple));
    color: white;
    font-weight: 800;
}

.modal-background {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(5px);
}

.modal-background.visible {
    display: grid;
}

.modal {
    width: min(620px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.25);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.modal-header h2 {
    margin: 7px 0 0;
}

.close-button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: #f1f5f9;
    font-size: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 8px;
    color: var(--sidebar);
    font-size: 14px;
    font-weight: 700;
}

.full-width {
    grid-column: 1 / -1;
}

/* MOBİL */

@media (max-width: 900px) {
    .portal-page {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        height: auto;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 17px 20px;
    }

    .sidebar-brand {
        padding: 0;
    }

    .sidebar-brand>div:last-child,
    .sidebar-menu a:not(.active) {
        display: none;
    }

    .sidebar-menu {
        margin: 0;
    }

    .logout-button {
        width: auto;
        margin: 0 0 0 auto;
        padding: 0 14px;
    }

    .portal-content {
        padding: 26px 20px 50px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .login-header {
        top: 22px;
        left: 22px;
    }

    .login-card {
        padding: 30px 24px;
    }

    .login-card h1 {
        font-size: 31px;
    }

    .portal-header {
        display: block;
    }

    .user-box {
        width: max-content;
        margin-top: 16px;
    }

    .admin-actions {
        align-items: flex-start;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }
}

.admin-button-group {
    display: flex;
    gap: 10px;
}

.secondary-add-button {
    background: var(--sidebar);
}

.agency-section {
    margin-top: 22px;
}

.payment-button {
    padding: 7px 10px;
    border: 0;
    border-radius: 9px;
    background: #eff6ff;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 800;
}

button:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 560px) {
    .admin-button-group {
        width: 100%;
        flex-direction: column;
    }

    .add-button {
        width: 100%;
    }
}

.commission-notice {
    margin-top: 20px;
    padding: 20px 22px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: #eff6ff;
}

.commission-notice strong {
    color: var(--text);
}

.commission-notice p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* SAFARI FORM ALANLARINI NORMALLEŞTİR */

select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 42px !important;
    background-color: #ffffff !important;
    background-image:
        linear-gradient(45deg, transparent 50%, #64748b 50%),
        linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 21px,
        calc(100% - 13px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

input[type="date"],
input[type="number"],
input[type="text"],
input[type="password"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #ffffff !important;
}

select:hover,
input:hover {
    border-color: #cbd5e1;
}

select:disabled,
input:disabled {
    background-color: #f8fafc !important;
    color: #64748b;
}

.agency-actions {
    display: flex;
    gap: 8px;
}

.edit-button,
.delete-button {
    padding: 7px 11px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
}

.edit-button {
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #2563eb;
}

.delete-button {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #dc2626;
}

.field-note {
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}

.excel-button {
    padding: 13px 18px;
    border: 1px solid #bbf7d0;
    border-radius: 13px;
    background: #ecfdf5;
    color: #047857;
    font-weight: 800;
}

.excel-button:hover {
    background: #d1fae5;
}

.request-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #b42318;
    background: #fee4e2;
    font-size: 13px;
    font-weight: 700;
}

.status.danger {
    color: #b42318;
    background: #fee4e2;
}

/* Giriş ekranı düzeltmesi */

.login-page .login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 150px);
    padding: 30px 20px;
}

.login-page .login-card {
    display: block;
    width: 100%;
    max-width: 520px;
    padding: 44px;
}

.login-page #loginForm {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
    opacity: 1 !important;
    visibility: visible !important;
}

.login-page #loginForm label {
    display: block;
    margin-top: 6px;
    font-weight: 700;
}

.login-page #loginForm input {
    display: block !important;
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #d8dce5;
    border-radius: 14px;
    background: #ffffff;
    color: #101828;
    font-size: 16px;
    box-sizing: border-box;
}

.login-page #loginForm .primary-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    margin-top: 8px;
}

/* Komisyon talep alanı yeni tasarım */

#commission-request {
    margin-top: 24px;
    padding: 30px;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    background: #ffffff;
    box-shadow:
        0 1px 3px rgba(16, 24, 40, 0.04),
        0 12px 30px rgba(16, 24, 40, 0.06);
}

#commission-request .content-card-header {
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaecf0;
}

#commission-request .content-card-header h2 {
    margin: 6px 0 8px;
    font-size: 24px;
}

#commission-request .content-card-header p {
    margin: 0;
    color: #667085;
    font-size: 14px;
}

#commissionRequestForm {
    display: block;
}

#commissionRequestForm .form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
}

#commissionRequestForm .form-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

#commissionRequestForm .form-field:nth-child(3) {
    grid-column: 1 / -1;
}

#commissionRequestForm label {
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

#commissionRequestForm input,
#commissionRequestForm textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    background: #ffffff;
    color: #101828;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

#commissionRequestForm input {
    min-height: 52px;
}

#commissionRequestForm textarea {
    min-height: 105px;
    resize: vertical;
}

#commissionRequestForm input:focus,
#commissionRequestForm textarea:focus {
    border-color: #356df3;
    box-shadow:
        0 0 0 4px rgba(53, 109, 243, 0.12);
}

#commissionRequestForm .primary-button {
    width: auto;
    min-width: 190px;
    min-height: 50px;
    margin-top: 18px;
    padding: 0 25px;
    float: right;
    border-radius: 12px;
}

#commissionRequestForm::after {
    display: block;
    clear: both;
    content: "";
}

#commission-request .table-wrapper {
    clear: both;
    margin-top: 30px;
    border: 1px solid #eaecf0;
    border-radius: 14px;
    overflow-x: auto;
}

#commission-request table {
    width: 100%;
    border-collapse: collapse;
}

#commission-request th {
    padding: 14px 16px;
    background: #f8fafc;
    color: #667085;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-align: left;
    white-space: nowrap;
}

#commission-request td {
    padding: 16px;
    border-top: 1px solid #eaecf0;
    color: #344054;
    font-size: 14px;
}

#commission-request .empty-message {
    padding: 30px;
    color: #667085;
    text-align: center;
}

@media (max-width: 760px) {
    #commission-request {
        padding: 20px;
    }

    #commissionRequestForm .form-grid {
        grid-template-columns: 1fr;
    }

    #commissionRequestForm .form-field:nth-child(3) {
        grid-column: auto;
    }

    #commissionRequestForm .primary-button {
        width: 100%;
        float: none;
    }
}

/* Acente listesi ile oran talepleri arasındaki boşluk */

#commission-requests {
    margin-top: 28px;
}

.candidate-detail-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.candidate-detail-grid>div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 16px;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    background: #f8fafc;
}

.candidate-detail-grid span {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.candidate-detail-grid strong {
    color: #101828;
    font-size: 15px;
    overflow-wrap: anywhere;
}

.candidate-detail-grid .full-width {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .candidate-detail-grid {
        grid-template-columns: 1fr;
    }

    .candidate-detail-grid .full-width {
        grid-column: auto;
    }
}

.detail-button {
    padding: 8px 13px;
    border: 1px solid #d0d5dd;
    border-radius: 9px;
    background: #ffffff;
    color: #344054;
    font-weight: 700;
    cursor: pointer;
}

.detail-button:hover {
    border-color: #356df3;
    color: #2457d6;
    background: #f5f8ff;
}

/* Acente formu kutu hizalama */

#agencyForm .form-grid {
    align-items: start;
}

#agencyForm .form-grid>label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
    margin: 0;
}

#agencyForm .form-grid input,
#agencyForm .form-grid select {
    width: 100%;
    height: 54px;
    margin: 0;
    padding: 0 16px;
    box-sizing: border-box;
}

#agencyForm #passwordNote {
    display: block;
    min-height: 18px;
    margin: 0;
}

.password-field {
    position: relative;
    width: 100%;
}

.password-field input {
    width: 100%;
    padding-right: 52px !important;
    box-sizing: border-box;
}

.password-eye:hover {
    color: #2457d6;
    background: #f2f4f7;
}

.password-eye.visible {
    color: #2457d6;
}

.password-field {
    position: relative;
    width: 100%;
}

.password-field input {
    width: 100%;
    padding-right: 52px !important;
    box-sizing: border-box;
}

.password-eye {
    position: absolute;
    top: 50%;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #475467;
    cursor: pointer;
    transform: translateY(-50%);
}

.password-eye:hover {
    background: #f2f4f7;
    color: #101828;
}

.password-eye svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.password-eye .eye-closed {
    display: none;
}

.password-eye.visible .eye-open {
    display: none;
}

.password-eye.visible .eye-closed {
    display: block;
}

.password-eye {
    color: #1f2937;
}

.password-eye svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.password-eye .eye-hide {
    display: none;
}

.password-eye.visible .eye-show {
    display: none;
}

.password-eye.visible .eye-hide {
    display: block;
}

.price-field {
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: 10px;
}

.price-field label {
    margin: 0;
    min-height: 24px;
}

.price-field input {
    width: 100%;
    height: 58px;
    margin: 0;
    box-sizing: border-box;
}

.price-field small {
    margin-top: 0;
}

.close-month-button {
    border: 1px solid #d7ccff;
    border-radius: 10px;
    padding: 10px 14px;
    background: #f3efff;
    color: #5b35c9;
    font: inherit;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.2s ease;
}

.close-month-button:hover {
    background: #6842db;
    border-color: #6842db;
    color: #ffffff;
}

.close-month-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.payment-status.waiting {
    color: #9a6700;
    background: #fff4cc;
}

.payment-status.paid {
    color: #167447;
    background: #dcf7e8;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 18px;
    border-top: 1px solid #edf0f7;
    background: #fafbff;
}

.filter-bar input,
.filter-bar select {
    width: auto;
    min-width: 180px;
    height: 42px;
    margin: 0;
    padding: 0 13px;
    border: 1px solid #dfe3ee;
    border-radius: 10px;
    background: #ffffff;
    font: inherit;
}

.filter-bar input[type="search"] {
    flex: 1;
    min-width: 220px;
}

.filter-clear-button {
    height: 42px;
    padding: 0 15px;
    border: 1px solid #dfe3ee;
    border-radius: 10px;
    background: #ffffff;
    color: #475067;
    font-weight: 700;
    cursor: pointer;
}

.filter-clear-button:hover {
    background: #f0f2f8;
}

#closurePayments .filter-bar {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

#closurePayments {
    margin-top: 24px;
}

.modal textarea {
    width: 100%;
    min-height: 90px;
    padding: 14px 16px;
    box-sizing: border-box;
    border: 1px solid #dfe3ee;
    border-radius: 12px;
    background: #ffffff;
    color: #252a38;
    font: inherit;
    line-height: 1.5;
    resize: vertical;
    outline: none;
}

.modal textarea:focus {
    border-color: #aeb8d0;
    box-shadow: 0 0 0 3px rgba(80, 98, 150, 0.08);
}

.modal textarea::placeholder {
    color: #9ca3af;
}