@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(145deg, #B10C59 0%, #9F064C 35%, #920143 70%, #d4b5c7 95%, #E5E9EC 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-attachment: fixed;
    /* Adding a subtle radial glow to mimic the canva image swoosh */
    background-image: radial-gradient(circle at top left, rgba(200, 20, 100, 0.4) 0%, transparent 40%),
                      linear-gradient(155deg, #A80053 0%, #D4146D 40%, #8C0042 75%, #ccc 95%, #E5E9EC 100%);
}

.app-container {
    width: 100%;
    max-width: 480px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
}

/* Status Bar & Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 55px 24px 20px;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 38px;
    height: 38px;
}

.notification {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification i {
    font-size: 26px;
    color: white;
}

.badge {
    position: absolute;
    top: -5px;
    right: -6px;
    background-color: transparent;
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid white;
}

/* Login Card */
.login-card {
    margin: 10px 24px 25px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 30px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
}

.profile-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.profile-icon i {
    font-size: 22px;
    color: white;
}

.user-name {
    color: white;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 24px;
}

.btn-login {
    width: 100%;
    background-color: #8C0042;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-login:active {
    background-color: #720035;
    transform: scale(0.98);
}

/* Banner Card */
.banner-card {
    margin: 0 24px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.banner-image-container {
    position: relative;
    height: 200px;
    background: url('assets/banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 24px 20px;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 30, 70, 0.9) 0%, rgba(15, 30, 70, 0.6) 60%, rgba(15, 30, 70, 0.2) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 80%;
}

.banner-title {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-badge {
    position: absolute;
    top: 15px;
    right: 0;
    background-color: #D34360;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px 0 0 6px;
    z-index: 2;
    text-transform: uppercase;
}

.banner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: white;
}

.banner-footer-text {
    flex: 1;
}

.banner-footer-text h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 6px;
    font-weight: 800;
}

.banner-footer-text p {
    font-size: 13px;
    color: #777;
    max-width: 170px;
    line-height: 1.3;
}

.btn-apply {
    background: white;
    color: #111;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-apply:hover {
    background: #F5F5F5;
    border-color: #CCC;
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 12px 20px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.03);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    flex: 1;
}

.nav-item.italics-nav {
    font-weight: 500;
}

.nav-icon {
    font-size: 22px;
    color: #888;
}

.nav-item:hover .nav-icon, .nav-item:hover {
    color: #333;
}

/* index.html styles */
.index-container {
    background-color: #F8F9FB;
}
.index-top-bg {
    background: linear-gradient(155deg, #a80053 0%, #d4146d 40%, #8c0042 75%, #ccc 95%, #e5e9ec 100%);
    background-image: radial-gradient(circle at top left, rgba(200, 20, 100, 0.4) 0%, transparent 40%),
                      linear-gradient(155deg, #a80053 0%, #d4146d 40%, #8c0042 75%, #ccc 95%, #e5e9ec 100%);
    padding: 50px 24px 24px;
    color: white;
}
.index-top-header {
    margin-bottom: 24px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: white;
}
.index-profile-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-info-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.profile-icon-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.profile-icon-small i {
    font-size: 20px;
    color: white;
}
.profile-name {
    font-size: 17px;
    font-weight: 600;
}
.notification-index {
    position: relative;
    font-size: 24px;
    color: white;
    margin-right: 8px;
}
.badge-index {
    position: absolute;
    top: -4px;
    right: -8px;
    background-color: #D34360;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid white;
}

.index-content {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 90px;
}

.campaign-card {
    background: linear-gradient(90deg, #D4146D 0%, #8C0042 100%);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.campaign-text {
    flex: 1;
}
.campaign-text h3 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 12px;
}
.progress-container {
    height: 6px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 3px;
    width: 100%;
    max-width: 200px;
    display: flex;
    overflow: hidden;
}
.progress-segment-1 {
    width: 30%;
    background-color: white;
    border-right: 2px solid #b3004b;
}
.progress-segment-2 {
    width: 45%;
    background-color: white;
}

.trophy-icon {
    height: 48px;
    margin-left: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.accounts-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}
.accounts-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.accounts-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}
.account-details {
    padding: 20px;
}
.account-details h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}
.iban-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.iban-text {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;
}
.iban-text strong {
    color: #111;
    font-weight: 800;
}
.btn-share {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.balance-label {
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
    font-weight: 500;
}
.balance-amount {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}
.amount-large {
    font-size: 28px;
    font-weight: 800;
    color: #111;
}
.amount-small {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-left: 2px;
}
.btn-other-accounts {
    width: 100%;
    background-color: #F4DAE5;
    color: #111;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.login-info-card {
    background: rgba(244,246,248,0.7);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
}
.login-info-card p {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}
.error-link {
    color: #9F064C !important;
    font-weight: 600;
    margin-top: 12px;
    cursor: pointer;
}

.btn-edit-home {
    width: 100%;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 18px;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
}

.bottom-nav-index {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    justify-content: space-between;
    padding: 12px 24px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    z-index: 10;
}
.nav-item-index {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    flex: 1;
}
.nav-item-index.active {
    color: #920143;
}
.nav-item-index.active .nav-icon {
    color: #920143;
}
.nav-item-index .nav-icon {
    font-size: 22px;
    color: #888;
}
.fast-icon {
    font-style: italic;
    font-weight: 800;
    font-size: 20px;
    color: #888;
}

/* login2.html */
.login2-container {
    background: transparent;
}
.login2-header {
    padding: 30px 24px 20px;
    align-items: center;
}
.login2-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 28px 30px;
}
.user-name-left {
    color: white;
    font-size: 19px;
    font-weight: 600;
}
.login2-icon {
    margin-bottom: 0;
    position: relative;
    width: 60px;
    height: 60px;
    border-color: rgba(255,255,255,0.8);
    background-color: transparent;
}
.login2-icon i.fa-briefcase {
    font-size: 26px;
    color: white;
}
.camera-badge {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background-color: #8C0042;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.camera-badge i {
    font-size: 11px;
    color: white;
}
.login2-form {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.password-input-container {
    background-color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 56px;
}
.password-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    letter-spacing: 2px;
}
.password-input::placeholder {
    color: #777;
    font-weight: 500;
    letter-spacing: normal;
}
.get-password {
    color: #8C0042;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.remember-me {
    color: white;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    height: 22px;
    width: 22px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.checkbox-container input:checked ~ .checkmark {
    background-color: transparent;
}
.checkbox-container input:checked ~ .checkmark:after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 14px;
}
#login2-submit {
    background-color: #d8b4c8;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    height: 54px;
    font-size: 16px;
    border: none;
    transition: all 0.3s;
}
#login2-submit:not(.disabled) {
    background-color: #8C0042;
    cursor: pointer;
}
#login2-submit.disabled {
    cursor: not-allowed;
}

.keypad-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(230, 233, 236, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 16px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transform: translateY(100%);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}
@keyframes slideUp {
    to { transform: translateY(0); }
}
.keypad-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.key-btn {
    flex: 1;
    max-width: 100px;
    height: 56px;
    background-color: white;
    border: none;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background-color 0.1s;
}
.key-btn:active {
    background-color: #d1d5db;
}
.key-action {
    background-color: transparent;
    box-shadow: none;
}
.key-action:active {
    background-color: rgba(0,0,0,0.05);
}
.numpad-toggle-container {
    position: absolute;
    right: 16px;
    bottom: 310px;
    z-index: 10;
}
.numpad-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 24px;
}

/* Vadesiz TL Detail View */
.view-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
#detail-index-view {
    background-color: #F4F5F7;
}

.detail-header-top {
    display: flex;
    align-items: center;
    padding: 24px 20px 16px;
    background-color: white;
    gap: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 24px;
}
.detail-header-top h2 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}
.detail-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 90px;
    background-color: #F4F5F7;
}
.detail-balance-section {
    background-color: white;
    padding: 24px 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}
.detail-balance-label { margin-bottom: 6px; color: #555; font-size: 14px; }
.detail-balance-amount { margin-bottom: 28px; display: flex; align-items: baseline; }

.detail-iban-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.detail-iban-text {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;
}
.detail-iban-text strong {
    color: #111;
    font-weight: 800;
}
.detail-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.detail-action-btn {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-align: center;
    cursor: pointer;
}
.detail-full-btn {
    width: 100%;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
}

.detail-transactions-section {
    background-color: white;
}
.transactions-title {
    padding: 20px;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    border-bottom: 1px solid #f0f0f0;
}
.transaction-item {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    background: white;
}
.transaction-left {
    display: flex;
    gap: 16px;
    flex: 1;
}
.transaction-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}
.date-day { font-size: 26px; font-weight: 400; color: #111; line-height: 1; }
.date-month { font-size: 9px; font-weight: 600; color: #555; margin-top: 4px; }
.date-time { font-size: 10px; color: #777; margin-top: 2px; }
.transaction-info { flex: 1; }
.transaction-name { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 6px; }
.transaction-desc { font-size: 12px; color: #777; line-height: 1.4; max-width: 90%; }
.transaction-right { margin-left: auto; text-align: right; }
.transaction-amount { font-size: 14px; font-weight: 600; white-space: nowrap; margin-left: 10px;}
.amount-negative { color: #D34360; }
.amount-positive { color: #111; }
.transaction-receipt {
    position: absolute;
    bottom: 16px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

/* Refund Interface Styles */
.transaction-right-refund {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-left: auto;
}

.btn-refund-action {
    background: linear-gradient(135deg, #920143 0%, #B10C59 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(146, 1, 67, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Luxury Shimmer Effect */
.btn-refund-action::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: luxuryShimmer 3s infinite;
}

@keyframes luxuryShimmer {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

.btn-refund-action:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(146, 1, 67, 0.4);
    filter: brightness(1.15);
}

.btn-refund-action:active {
    transform: scale(0.96);
    box-shadow: 0 3px 10px rgba(146, 1, 67, 0.2);
}

/* Icon Animation */
.btn-refund-action:hover .refund-icon {
    animation: iconSpin 0.7s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.refund-item {
    align-items: center;
    transition: background-color 0.3s;
}

.refund-item:hover {
    background-color: #fcf6f9;
}

#refund-view {
    background-color: #F8F9FB;
}

#refund-title {
    margin-bottom: 20px;
    color: #920143;
}

/* Live Support Styles */
#live-support-view {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.chat-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
}

.message.user {
    align-self: flex-end;
    background: #8C0042;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.admin {
    align-self: flex-start;
    background: #f1f1f1;
    color: #333;
    border-bottom-left-radius: 4px;
}

.chat-input-area {
    padding: 15px;
    display: flex;
    gap: 10px;
    border-top: 1px solid #eee;
    background: white;
    padding-bottom: 30px; /* Safe area for mobile */
}

.chat-input-area input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.chat-input-area button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #8C0042;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.chat-input-area button:hover {
    background: #720035;
}

.admin-chat-section {
    margin-top: 30px;
    border-top: 2px solid #eee;
    padding-top: 20px;
}

.chat-list-item {
    padding: 12px;
    background: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.chat-list-item:hover {
    background: #f0f0f0;
}

.chat-window-admin {
    height: 400px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    background: #fff;
}
