/* 기본 아이콘 및 이미지 스타일 */
.icon-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #666;
    font-weight: bold;
    border-radius: 4px;
}

.product-placeholder {
    background-color: #f5f5f5;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
}

/* 전체 콘텐츠 너비 고정 */
.main-content.full-width {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 모든 섹션 공통 폭 조정 */
.banner-section,
.category-shortcuts-section,
.discount-section,
.popular-section,
.holiday-section {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 15px;
}

/* 광고 섹션 스타일 */
.ad-section {
    width: 100%;
    background-color: #f5f5f5;
    padding: 10px 0px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.ad-container {
    width: 100%;
    max-width: 1000px;
    min-width: 300px;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-sizing: border-box;
}

/* 기간 한정 커스텀 배너 스타일 */
.custom-banner-container {
    width: 100%;
    max-width: 1000px;
    min-width: 300px;
    margin: 0 auto;
    box-sizing: border-box;
}

.custom-banner-ad {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    min-height: 80px;
}

.custom-banner-ad:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 왼쪽 이미지 (아이콘) - ad 바로 아래 */
.custom-banner-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.banner-icon-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}

.custom-banner-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    flex: 1;
}

/* 중앙 텍스트 */
.custom-banner-text {
    flex: 1;
    margin-right: 16px;
}

.custom-banner-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #333;
    line-height: 1.2;
}

.custom-banner-text p {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 4px 0;
    color: #666;
    line-height: 1.4;
}

/* 오른쪽 버튼 */
.custom-banner-button {
    flex: 0 0 auto;
}

.event-view-btn {
    background: #8D6E63;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.event-view-btn:hover {
    background: #795548;
}

/* 배너 슬라이더 스타일 */
.banner-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 200px; /* 고정 높이 설정 */
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 캐러셀 컨테이너 */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y; /* 수직 스크롤은 허용하고 수평 스와이프 제어 */
    user-select: none; /* 텍스트 선택 방지 */
}

/* 배너 로딩 스타일 */
.loading-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 12px;
    color: #666;
    font-size: 16px;
    text-align: center;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.banner {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 12px;
    color: white;
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.2s ease; /* 스와이프 애니메이션 및 호버 효과 추가 */
    cursor: pointer; /* 클릭 가능하다는 시각적 피드백 */
}

.banner:hover {
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 배경 패턴 */
.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.pattern-circle-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
}

.pattern-circle-2 {
    width: 90px;
    height: 90px;
    bottom: -30px;
    left: -30px;
    background-color: rgba(255, 255, 255, 0.05);
}

/* 링크 아이콘 */
.banner-link-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: white;
    z-index: 10;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.banner-link-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* 배너 콘텐츠 */
.banner-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

/* 배너 색상 (그라데이션으로 업데이트) */
.banner-red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #a93226 100%);
}

.banner-blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #21618c 100%);
}

.banner-green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #229954 100%);
}

.banner-purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 50%, #7d3c98 100%);
}

.banner-orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
}

/* 이미지형 광고 배너 */
.banner-image {
    background: transparent;
    position: relative;
}

/* 배경 이미지 */
.banner-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain; /* cover에서 contain으로 변경하여 이미지 전체가 보이도록 함 */
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
}


/* 이미지형 광고의 콘텐츠 (하단 배치) */
.banner-content-bottom {
    justify-content: flex-end !important;
}

/* 이미지형 광고의 텍스트 스타일 */
.banner-image .banner-title {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

.banner-image .banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.banner-image .banner-info span {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 이미지 로딩 실패 시 플레이스홀더 */
.banner-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #999;
    text-align: center;
}

.image-error-icon {
    margin-bottom: 12px;
    opacity: 0.7;
}

.banner-image-placeholder p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

.banner.changing {
    opacity: 0.8;
}

.banner.active {
    display: block;
}

.banner-title {
    font-size: 24px; /* 20px → 24px로 증가 */
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    max-width: 85%;
}

.banner-subtitle {
    font-size: 16px; /* 14px → 16px로 증가 */
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 85%;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 배너 푸터 */
.banner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.banner-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px; /* 12px → 14px로 증가 */
    font-weight: 500;
}

.banner-info svg {
    flex-shrink: 0;
}

.banner-button {
    background-color: white;
    color: #e74c3c;
    padding: 8px 16px; /* 6px 12px → 8px 16px로 증가 */
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px; /* 12px → 14px로 증가 */
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
}

.banner-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.banner-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.banner-button:disabled:hover {
    background-color: white;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 광고 배너의 버튼 색상 */
.banner-blue .banner-button {
    color: #3498db;
}

.banner-green .banner-button {
    color: #2ecc71;
}

.banner-purple .banner-button {
    color: #9b59b6;
}

.banner-orange .banner-button {
    color: #f39c12;
}

/* 이미지형 광고의 버튼 색상 (텍스트형과 동일하게) */
.banner-image .banner-button {
    color: #3498db;
}

/* 일반 공지사항 버튼 스타일 (호버 효과 및 포인터 제거) */
.banner-button.notice-button {
    cursor: default !important;
}

.banner-button.notice-button:hover {
    background-color: white !important;
    transform: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.pagination {
    display: flex;
    gap: 4px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.selected, .dot:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* 할인정보 개선 스타일 */
.product-card.highlight {
    border: 2px solid #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.15);
}

.deadline-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.discount-badge.highlight {
    background: #f39c12;
    margin-left: 5px;
}

/* 카테고리 바로가기 */
.category-shortcuts {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin: 10px 0;
    width: 100%;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.category-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-count {
    font-size: 14px;
    color: #666;
}

/* 인기 상품 그리드 */
.popular-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 10px;
    width: 100%;
}

.product-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.discount-badge.new {
    background-color: #3498db;
}

.ranking-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f39c12;
    color: white;
    font-size: 16px;
    font-weight: 700;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ranking-badge.rank-1-3 {
    background-color: #e74c3c;
    width: 28px;
    height: 28px;
    font-size: 17px;
}

.ranking-badge.rank-4-5 {
    background-color: #f39c12;
}

.product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.category-tag {
    display: inline-block;
    font-size: 12px;
    color: #777;
    background-color: #f3f3f3;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* product card 날짜 정보 스타일 */
.date-info {
    font-size: 12px;
    color: #666;
    background-color: #f9f9f9;
    padding: 3px 6px;
    border-radius: 3px;
    width: fit-content;
    margin-top: 3px;
    text-align: left;
    align-self: flex-start;
}

/* 휴무일 정보 스타일 */
.holiday-section {
    margin-top: 15px;
    margin-bottom: 20px;
}

.next-holiday {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.holiday-icon {
    margin-right: 25px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
}

.holiday-icon img {
    width: 36px;
    height: 36px;
}

.holiday-info-summary {
    flex: 1;
}

.next-holiday-title {
    font-size: 17px;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.next-holiday-date {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.holiday-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.holiday-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
}

.holiday-button:hover {
    background-color: #d44333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.4);
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .main-content.full-width {
        padding: 0 15px;
    }
    
    .banner-section,
    .category-shortcuts-section,
    .discount-section,
    .popular-section,
    .holiday-section {
        max-width: 100%;
    }
    
    .banner {
        min-height: 180px;
        padding: 25px;
    }
    
    .category-shortcuts {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .banner-title {
        font-size: 20px;
        max-width: 90%;
    }
    
    .banner-subtitle {
        font-size: 13px;
        max-width: 90%;
    }
    
    .category-shortcuts {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .popular-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .product-card {
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s, box-shadow 0.2s;
        overflow: hidden;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }
    
    .next-holiday {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .holiday-icon {
        margin: 0 0 15px 0;
    }
}

/* 모바일 반응형 스타일 */
@media (max-width: 576px) {
    .banner-slider {
        height: 170px; /* 모바일에서 하단 패딩을 위해 높이 약간 증가 */
        margin: 0; /* 데스크톱과 동일하게 전체 너비 사용 */
        border-radius: 8px;
    }
    
    .banner {
        padding: 16px 16px 20px 16px; /* 하단 패딩을 더 추가 */
        border-radius: 8px;
    }
    
    .banner-title {
        font-size: 18px; /* 16px → 18px로 증가 */
        margin-bottom: 8px;
        max-width: 90%;
    }
    
    .banner-subtitle {
        font-size: 14px; /* 12px → 14px로 증가 */
        line-height: 1.4;
        max-width: 90%;
        -webkit-line-clamp: 2; /* 모바일에서는 2줄로 제한 */
        line-clamp: 2;
    }
    
    .banner-footer {
        margin-top: 12px;
    }
    
    .banner-info {
        font-size: 12px; /* 11px → 12px로 증가 */
        gap: 4px;
    }
    
    .banner-info svg {
        width: 12px;
        height: 12px;
    }
    
    .banner-button {
        padding: 6px 12px; /* 4px 10px → 6px 12px로 증가 */
        font-size: 12px; /* 11px → 12px로 증가 */
        border-radius: 12px;
    }
    
    .banner-link-icon {
        top: 12px;
        right: 12px;
        padding: 6px;
        border-radius: 16px;
    }
    
    .banner-link-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .pattern-circle-1 {
        width: 70px;
        height: 70px;
        top: -15px;
        right: -15px;
    }
    
    .pattern-circle-2 {
        width: 60px;
        height: 60px;
        bottom: -20px;
        left: -20px;
    }
    
    .pagination {
        bottom: 12px; /* 모바일에서 하단 패딩 증가 */
        gap: 3px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    /* 기본 레이아웃 모바일 스타일 */
    .main-content.full-width {
        padding: 0 0px;
    }
    
    .category-shortcuts {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-name {
        font-size: 13px;
    }
    
    .product-count {
        font-size: 11px;
    }
    
    .popular-product-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
        padding: 0;
    }
    
    .next-holiday-title {
        font-size: 16px;
    }
    
    .next-holiday-date {
        font-size: 18px;
    }
    
    .holiday-description {
        font-size: 13px;
    }
    
    /* 상품 카드 레이아웃 추가 */
    .product-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 8px;
        padding: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        overflow: hidden !important;
    }
    
    .product-card .product-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
        padding-bottom: 0;
        margin-right: 12px;
        border-radius: 6px;
        position: relative;
        overflow: hidden;
    }
    
    .product-card .product-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .product-card .product-info {
        flex: 1;
        padding: 8px 8px 8px 0;
        display: flex;
        flex-direction: column;
        gap: 3px;
        max-width: calc(100% - 120px) !important;
        overflow: hidden !important;
    }
    
    .product-card .product-name {
        font-size: 14px;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        max-width: 100% !important;
        height: auto !important;
        margin-bottom: 0;
    }
    
    .product-card .category-tag {
        display: none;
    }
    
    .product-card .price-container {
        margin: 2px 0;
    }
    
    .banner-section,
    .category-shortcuts-section,
    .discount-section,
    .popular-section,
    .holiday-section {
        margin-bottom: 10px;
    }
    
    .category-shortcuts {
        margin: 5px 0;
    }
    
    .holiday-section {
        margin-top: 10px;
        margin-bottom: 15px;
    }
    
    /* 커스텀 배너 모바일 스타일 */
    .custom-banner-ad {
        min-height: 70px;
    }
    
    .custom-banner-icon {
        padding: 0px;
    }
    
    .banner-icon-image {
        width: 70px;
        height: 70px;
        border-radius: 8px 0 0 8px;
    }
    
    .custom-banner-content {
        padding: 12px 16px;
    }
    
    .custom-banner-text {
        margin-right: 12px;
    }
    
    .custom-banner-text h3 {
        font-size: 16px;
        margin-bottom: 1px;
    }
    
    .custom-banner-text p {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .event-view-btn {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 16px;
    }
}

/* 스켈레톤 UI 스타일 (로딩 중 사용자 경험 개선) */
.skeleton-banner,
.skeleton-categories,
.skeleton-products,
.skeleton-holiday {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
    color: #999;
    font-size: 14px;
    padding: 20px;
    min-height: 60px;
}

.skeleton-banner {
    height: 200px;
    border-radius: 12px;
    font-size: 16px;
}

.skeleton-categories {
    height: 120px;
    grid-column: 1 / -1; /* 전체 너비 차지 */
}

.skeleton-products {
    height: 300px;
    grid-column: 1 / -1; /* 전체 너비 차지 */
}

.skeleton-holiday {
    height: 150px;
}

@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* 에러 메시지 스타일 */
.error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe6e6;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    padding: 20px;
    font-size: 14px;
    text-align: center;
    min-height: 60px;
}