@charset "utf-8";
/* @font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
} */


@import url(./font/pretendardvariable.css);



/* styles.css */
:root {
    /* 색상 변수 */
    --background-color: hsl(0, 0%, 100%);
    --text-color: hsl(222.2, 84%, 4.9%);
    --primary-color: hsl(221.2, 83.2%, 53.3%);
    --primary-text-color: hsl(210, 40%, 98%);
    --secondary-color: hsl(210, 40%, 96.1%);
    --border-color: hsl(214.3, 31.8%, 91.4%);
    --muted-color: hsl(215.4, 16.3%, 46.9%);
    --danger-color: hsl(0, 84.2%, 60.2%);
    
    /* 크기 변수 */
    --container-max-width: 48rem; /* 768px */
    --header-height: 3.5rem; /* 56px */
    --border-radius: 0.5rem; /* 8px */
    --spacing-1: 0.25rem; /* 4px */
    --spacing-2: 0.5rem; /* 8px */
    --spacing-4: 1rem; /* 16px */
    --spacing-6: 1.5rem; /* 24px */

    /* 폰트사이즈 */
    --sm-font: 0.875rem; /* 14px */
    --md-font: 1rem; /* 18px */
    --lg-font: 1.125rem ; /* 20px */ 
  }
  
  /* 기본 리셋 */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Pretendard Variable" , -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
  }
  
  /* 레이아웃 */
  .container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-2);
  }
  
  /* 헤더 스타일 */
  .header {
    position: sticky;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    z-index: 50;
    margin-bottom: 1remm;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  
  .logo {
    font-size: var(--lg-font);
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .header-actions {
    display: flex;
    gap: var(--spacing-1);
  }

  

  /* 버튼 스타일 */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-1) var(--spacing-2);
    border-radius: var(--border-radius);
    border: none;
    background: none;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .button:hover {
    background-color: var(--secondary-color);
  }
  
  .button-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: var(--spacing-2);
  }
  
  .button-primary {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
  }
  
  .button-primary:hover {
    background-color: hsl(221.2, 83.2%, 48%);
  }

  /* 탭 스타일 */
  /* 탭 스타일 */
  .tabs {
    width: 100%;
  }
  
  .tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-6);
    border-bottom: 1px solid #e9eaec;
  }
  
  .tab-button {
    padding: var(--spacing-2);
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
  }
  
  .tab-button.active {
    background-color: var(--secondary-color);
  }
  

  .tab-content-wrap {
    position: relative;
  }

  .tab-content-wrap > .tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    display: none;
    margin-bottom: 1rem;

  }
  
  .tab-content.active {
    display: block;
    opacity: 1;
    z-index: 1;
    
  }
  
  /* 카드 스타일 */
  .card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: var(--spacing-6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-4);
  }
  
  .card-title {
    font-size: var(--lg-font);
    font-weight: 600;
  }

  .card-text {
    
    font-size: var(--sm-font); /* 14px */
    color: #6B7280; /* gray-500 색상값 */
    margin-bottom: var(--spacing-4);
  }
  
  /* 예약 그리드 레이아웃 */
.reservation-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem; /* 16px */
}

/* 예약 아이템 */
.reservation-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* 8px */
}

/* 예약 헤더 */
.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* 카드 스타일 */
.menu-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.card-header {
    padding: 0 !important;
    margin-bottom: 1rem;
}

.card-title {
    font-size: var(--lg-font);
    font-weight: 600;
    color: #111827;
}

.card-content {
    padding: 0 1.5rem 1.5rem;
}

/* 탭 스타일 */
.tabs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-button {
    padding: 0.25rem;
    background: transparent;
    border: 0;
    color: #cccccc;
    border-radius: 0;
    font-size: var(--md-font);
    cursor: pointer;
    
}

.tab-button.active {
    color: #090909;
    background: transparent;
    border-bottom: 2px solid #090909;
    /* background: #F3F4F6;
    border-color: #D1D5DB; */
}

.menu-tabs .tab-button {
    background: #ffffff; 
    border: 1px solid #CEDCE9;
    border-radius: 4px;
    color: #090909;
    
}

.menu-tabs .tab-button.active {
    background: #f2f4f6 !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 메뉴 컨테이너 */
.menu-container {
    background: #F9FAFB;
    padding: 0.75rem;
    border-radius: 0.375rem;
}

.status-notice {
    gap: 0.75rem;
}

/* 메뉴 헤더 */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-title {
    font-weight: 500;
    color: #111827;
}

.calorie-badge {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: var(--sm-font);
}

/* 메뉴 상세 */
.menu-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-item {
    display: flex;
    gap: 0.75rem;
}

.item-label {
    font-size: var(--sm-font);
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

.item-content {
    font-size: var(--sm-font);
    color: #111827;
}



/* 알림 스타일 */
.alert {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: var(--sm-font);
    margin: 0.5rem 0;
}

.alert-success {
    background-color: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #15803D;
}

.alert-info {
    background-color: #EFF6FF;
    border: 1px solid #BFDBFE;
    color: #1D4ED8;
}

.alert-warning {
    background-color: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #B45309;
}

.alert-danger {
    border: 1px solid #F24F4F;
    background: #FEF5EA;
    color: #F24F4F;
}

.danger-text{
    color: #F24F4F;
    font-size: var(--lg-font);
}

.danger-card-header {
    display: flex;
    justify-content: space-between;
}

/* 예약 옵션 스타일 */
.reservation-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reservation-option {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.reservation-option .option-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reservation-option .switch {
    margin-left: 1rem;
}

.add-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: none;
    box-shadow: none;
    padding: 0;
}

.add-card > * {
    width: 100%;
    margin-bottom: 0.5rem;
}

.add-card .reservation-option {
    margin-bottom: 0.5rem;
}

.button.button-primary {
    width: 100%;
}

.form-group, .quantity-selector {
    width: 100%;
}

/* 스위치 토글 스타일 */
.switch {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E5E7EB;
    transition: .4s;
    border-radius: 1.5rem;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.25rem;
    width: 1.25rem;
    left: 0.125rem;
    bottom: 0.125rem;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3B82F6;
}

input:checked + .slider:before {
    transform: translateX(1.5rem);
}

/* 폼 요소 스타일 */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-textarea {
    width: 100%;
    min-height: 5rem;
    padding: 0.5rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    resize: vertical;
    font-size: var(--sm-font);
}

/* 버튼 스타일 */
.button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-size: var(--lg-font);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.button-primary {
    background-color: #3B82F6;
    color: white;
}

.button-primary:hover {
    background-color: #2563EB;
}

.button-primary:disabled {
    background-color: #92B1F4;
    cursor: not-allowed;
}

.hidden {
    display: none;
}



/* 식사 타입 */
.meal-type {
    font-weight: 500;
}

/* 배지 스타일 */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: var(--sm-font);
}

.badge-reserved {
    background-color: #EFF6FF; /* blue-50 */
    color: #1D4ED8; /* blue-700 */
    border: 1px solid #BFDBFE; /* blue-200 */
}

.badge-reserved-done {
    background-color: #1D4ED8; /* blue-50 */
    color: #ffffff; /* blue-700 */
    border: 1px solid #CEDCE9; /* blue-200 */
}

.badge-not-reserved {
    background-color: #F3F4F6; /* gray-100 */
    color: #6B7280; /* gray-500 */
    border: 1px solid #E5E7EB; /* gray-200 */
}

/* 상태 표시 */
.status-indicator {
    display: flex;
    align-items: center;
    font-size: var(--sm-font); /* 14px */
}

.status-icon {
    margin-right: 0.25rem; /* 4px */
}

/* 완료 상태 */
.status-completed {
    color: #047857; /* green-700 */
}

.status-completed .status-icon {
    color: #10B981; /* green-500 */
}

/* 대기 상태 */
.status-waiting {
    color: #B45309; /* amber-700 */
}

.status-waiting .status-icon {
    color: #F59E0B; /* amber-500 */
}

/* 미예약 상태 */
.status-not-reserved {
    color: #6B7280; /* gray-500 */
}

.status-not-reserved .status-icon {
    color: #9CA3AF; /* gray-400 */
}

  
  /* 폼 스타일 */
  .form-group {
    margin-bottom: var(--spacing-4);
  }
  
  .form-label {
    display: block;
    font-size: var(--sm-font);
    font-weight: 500;
    margin-bottom: var(--spacing-1);
  }
  
  .form-input {
    width: 100%;
    padding: var(--spacing-2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
  }
  
  /* QR 스캐너 */
  .qr-scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }
  
  .qr-scanner.hidden {
    display: none;
  }
  
  .qr-scanner-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 1rem;
  }
  
  .qr-scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .qr-scanner-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    margin: 1rem;
  }
  
  .qr-scanner-text {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-size: var(--md-font);
  }
  
  /* 뱃지 스타일 */
.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: var(--sm-font);
}

.badge-outline {
    background-color: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
}

.badge-new {
    background-color: #EF4444;
    color: white;
    font-size: var(--sm-font);
    white-space: nowrap;
}

/* 공지사항 스타일 */
.announcements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.announcement-item {
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-direction: column;
}

.title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.announcement-title {
    font-weight: 500;
    color: #111827;
    flex: 1 1 auto; /* 가로 공간 최대한 차지 */
    word-break: keep-all;
}

.announcement-date {
    font-size:var(--sm-font);
    color: #6B7280;
}

.announcement-content {
    font-size: var(--sm-font);
    color: #4B5563;
    line-height: 1.5;
}

.announcement-content img {
    margin-bottom: 0.5rem;
    width: 100%;
}

/* 반응형 디자인 */
@media (max-width: 640px) {
    .card-header {
        padding: 1rem 1rem 0.5rem;
    }

    .card-content {
        padding: 0 !important;
    }

    .announcement-item {
        padding: 0.5rem;
    }
}

  
  /* 유틸리티 클래스 */
  .hidden {
    display: none;
  }
  
  .space-y-4 > * + * {
    margin-top: var(--spacing-4);
  }
  
  .text-danger {
    color: var(--danger-color);
  }
  
  .text-success {
    color: hsl(142, 76%, 36%);
  }
  

  /* 커스텀 */
#mainContent {
    margin-top: 1rem;
}
  

.reservation-text {
    font-size:var(--sm-font); /* 14px */
    color: #6B7280; /* gray-500 색상값 */
}


.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-code {
    /* margin-bottom: 1rem; 16px */
}

.qr-instruction {
    font-size: var(--md-font); /* 14px */
    color: #6B7280; /* gray-500 */
    margin-bottom: 1rem; /* 16px */
}

.scan-button {
    padding: 0.625rem 1.25rem; /* 10px 20px */
    background-color: #3182CE; /* 또는 원하는 색상 */
    color: white;
    border: none;
    border-radius: 0.375rem; /* 6px */
    font-size: var(--lg-font); /* 14px */
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 80%;
}

.scan-button:hover {
    background-color: #2C5282; /* 더 진한 색상 */
}

.scan-button:active {
    background-color: #2A4365; /* 클릭시 색상 */
}

.info-header {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.today-status table {
    width: 100%;
}

.today-status table thead tr td {
    font-size: var(--sm-font);
    color: #6b7280;
    width: 25%;
    text-align: center;
}

.today-status table tbody {
    background: #F9FAFC;
}

.today-status table tbody td {
    vertical-align: middle;
    text-align: center;
}

.text-blue {
    color: #538df6;
}

.text-orange {
    color: #f6b160;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.today-notice {
    position: relative;
}

.notice-button {
    border: 1px solid #999999;
    color: #999999;
    font-size: var(--sm-font);
    width: 20px;
    height: 20px;
    line-height: 16px;
    border-radius: 25%;
    position: absolute;
    bottom: -10px;
    right: 0;
}

  /* 반응형 디자인 */
  @media (max-width: 640px) {
    .container {
      padding: 0 var(--spacing-2);
    }
    
    .card {
      padding: var(--spacing-4);
    }
  }

.quantity-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.quantity-control {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
}

.quantity-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
}

.quantity-btn:first-child {
    border-right: 1px solid #e5e7eb;
}

.quantity-btn:last-child {
    border-left: 1px solid #e5e7eb;
}

.quantity-display {
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    width: 50px;
    text-align: center;
    font-weight: bold;
    height: 40px;
    border: 0 !important;
    font-size: var(--md-font) !important; 
}

.qr-scanner {
    position: fixed;
    top: 80px; /* 헤더 높이만큼 아래로 이동 */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1200; /* 오버레이보다 위에 표시되도록 z-index 증가 */
    width: 90%;
    max-width: 500px;
    height: 420px;
    pointer-events: auto; /* QR 스캐너 내부 상호작용 허용 */
}

.qr-scanner.hidden {
    display: none;
}

.qr-scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #b0b8c1;
}

.qr-scanner-area {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
    height: 300px;
    border-radius: 10px;
}

.qr-scanner-text {
    width: 190px;
    height: 190px;
    display: flex;
    margin: 0 auto 1rem;
    align-items: center;
    justify-content: center;
    border: 1px dashed #CFD5DB;
    background: #F3F4F6;
    border-radius: 10px;
}

.scan-button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.scan-button:hover {
    background: #0056b3;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

.overlay.active {
    display: block;
}

.manna-cancel-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 999;
    display: none;
}

.manna-cancel-alert.active {
    display: block;
}
.manna-alert-box {
    width: 90%;
    height: 160px;
    top: 42%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    position: relative;
}

.manna-alert-box .close-button {
    position: absolute;
    right: 10px;
    top: 0;
}

.manna-alert-text {
    font-size: var(--lg-font);
    font-weight: bold;
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.manna-alert-btn-box {
    display: flex;
    justify-content: space-around;
}

.manna-alert-btn-box button {
    width: 99px; 
    height: 35px; 
    line-height: 35px;
    border-radius: 5px;
    display: block;
    text-align: center;
    color: #fff;
}

.manna-alert-btn-box button.btnNo {
    background: #F04452;
}

.manna-alert-btn-box button.btnYes {
    background: #3082f7;
}

/* QR 스캐너 추가 스타일 */
#extraQrCard {
    margin: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#extraQrCard .card-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

#extraQrCard .alert {
    margin-left: 8px;
    margin-right: 8px;
}

#extraQrCard .qr-content {
    padding: 1.5rem;
    background: #fafbfc;
    border-radius: 8px;
}

/* QR 제출 완료 모달 */
#extraQrModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

#extraQrModal .modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 스타일 */
@media (max-width: 640px) {
    .qr-scanner-wrap {
        padding: 0.5rem;
    }
    
    .qr-scanner-area {
        margin: 0.5rem;
        padding: 1rem;
    }
    
    #extraQrCard {
        margin: 0.5rem;
    }
    
    #extraQrCard .qr-content {
        padding: 1rem;
    }
}

/* 모달 공통 스타일 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    pointer-events: auto; /* 오버레이 클릭 이벤트 허용 */
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 350px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 모바일 반응형 스타일 */
@media (max-width: 640px) {
    .modal-content {
        padding: 1.5rem;
        width: 85%;
        height: 80px;
    }
}

.info-icon {
    margin-right: 0.5em;
    font-size: 1.1em;
    flex-shrink: 0;
}