/* 향상된 PWA 스타일 */
.pwa-body {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #1e293b;
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* 헤더 */
.pwa-header {
    background: linear-gradient(135deg, #1e7b47, #0f5a2e);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.brand-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #c5a572;
}

.brand-info p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.current-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.time-display {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.time-display span {
    font-size: 0.875rem;
    line-height: 1;
}

#current-date {
    font-weight: 500;
    color: #c5a572;
}

#current-time {
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* 메인 컨테이너 */
.pwa-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* 인증 섹션 */
.auth-section {
    display: none;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
}

.auth-section.active {
    display: flex;
}

.auth-container {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(229, 231, 235, 0.8);
    max-width: 400px;
    width: 100%;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 12px;
}

.auth-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e7b47;
    margin: 0 0 0.5rem 0;
}

.auth-header p {
    color: #64748b;
    margin: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
}

.form-group input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1e7b47;
    box-shadow: 0 0 0 3px rgba(30, 123, 71, 0.1);
}

.auth-button {
    padding: 1rem;
    background: linear-gradient(135deg, #1e7b47, #0f5a2e);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(30, 123, 71, 0.4);
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.auth-links a {
    color: #1e7b47;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* 대시보드 섹션 */
.dashboard-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.user-header {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e7b47, #0f5a2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.user-avatar i {
    width: 24px;
    height: 24px;
}

.user-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.user-details p {
    color: #64748b;
    margin: 0.25rem 0 0 0;
}

/* 체크박스 그룹 */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #4b5563;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #1e7b47;
    border-color: #1e7b47;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* 비회원 안내 */
.guest-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.guest-notice i {
    color: #f59e0b;
    width: 20px;
    height: 20px;
}

.guest-notice p {
    margin: 0;
    color: #92400e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.logout-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* 빠른 예약 섹션 */
.quick-booking-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quick-booking-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.date-time-selector {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.date-selector label,
.time-selector label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.date-selector input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
}

.time-slot {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.time-slot:hover {
    border-color: #1e7b47;
    background: #f0fdf4;
}

.time-slot.available {
    border-color: #22c55e;
    color: #16a34a;
}

.time-slot.occupied {
    border-color: #ef4444;
    color: #dc2626;
    background: #fef2f2;
    cursor: not-allowed;
}

.time-slot.selected {
    background: linear-gradient(135deg, #1e7b47, #0f5a2e);
    color: white;
    border-color: #1e7b47;
}

/* 룸 상태 섹션 */
.room-status-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.room-status-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.holiday-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    color: #92400e;
    font-weight: 500;
    margin-bottom: 1rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.room-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: white;
}

.room-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.room-card.available {
    border-color: #22c55e;
}

.room-card.occupied {
    border-color: #ef4444;
}

.room-card.maintenance {
    border-color: #f59e0b;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.room-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.room-status {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.room-status.available {
    background: #dcfce7;
    color: #16a34a;
}

.room-status.occupied {
    background: #fee2e2;
    color: #dc2626;
}

.room-status.maintenance {
    background: #fef3c7;
    color: #d97706;
}

.room-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.room-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.room-info-label {
    color: #64748b;
}

.room-info-value {
    font-weight: 500;
    color: #1e293b;
}

.room-actions {
    display: flex;
    gap: 0.75rem;
}

.room-book-button {
    flex: 1;
    padding: 0.75rem;
    background: linear-gradient(135deg, #1e7b47, #0f5a2e);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-book-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 123, 71, 0.4);
}

.room-book-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 현재 예약 섹션 */
.current-reservations {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.current-reservations h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.reservations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reservation-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.reservation-card:hover {
    border-color: #1e7b47;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reservation-id {
    font-weight: 600;
    color: #1e7b47;
}

.reservation-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.reservation-status.confirmed {
    background: #dcfce7;
    color: #16a34a;
}

.reservation-status.pending {
    background: #fef3c7;
    color: #d97706;
}

.reservation-status.cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.reservation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.reservation-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reservation-detail-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
}

.reservation-detail-value {
    font-weight: 600;
    color: #1e293b;
}

.reservation-actions {
    display: flex;
    gap: 0.75rem;
}

.reservation-action-button {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-action-button:hover {
    border-color: #1e7b47;
    color: #1e7b47;
}

.reservation-action-button.primary {
    background: linear-gradient(135deg, #1e7b47, #0f5a2e);
    color: white;
    border-color: #1e7b47;
}

.reservation-action-button.primary:hover {
    background: linear-gradient(135deg, #0f5a2e, #0a4722);
}

.reservation-action-button.danger {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.reservation-action-button.danger:hover {
    background: #dc2626;
}

/* 모달 스타일 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-content.large {
    max-width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.close-button {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-button:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 1.5rem;
}

/* 예약 폼 스타일 */
.booking-steps {
    display: flex;
    flex-direction: column;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
}

.next-button,
.prev-button,
.submit-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-button,
.submit-button {
    background: linear-gradient(135deg, #1e7b47, #0f5a2e);
    color: white;
}

.prev-button {
    background: #6b7280;
    color: white;
}

.step-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* 결제 옵션 */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: #1e7b47;
    background: #f0fdf4;
}

.payment-card i {
    width: 24px;
    height: 24px;
    color: #1e7b47;
}

.payment-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.payment-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.25rem 0 0 0;
}

.discount {
    background: #fef3c7;
    color: #d97706;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

/* 가격 요약 */
.price-summary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-item.discount {
    color: #dc2626;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: #1e293b;
}

/* QR 코드 모달 */
.qr-content {
    text-align: center;
}

.qr-code {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.qr-info {
    text-align: center;
}

.qr-info p {
    margin: 0.5rem 0;
    color: #64748b;
}

.qr-info strong {
    color: #1e7b47;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .pwa-main {
        padding: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-status {
        flex-direction: column;
        gap: 1rem;
    }
    
    .auth-container {
        padding: 2rem;
    }
    
    .date-time-selector {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .reservation-details {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .step-buttons {
        flex-direction: column;
    }
}

/* 예약 관리 추가 스타일 */
.reservation-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.reservation-action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.reservation-action-btn.detail-btn {
    background: #3b82f6;
    color: white;
}

.reservation-action-btn.detail-btn:hover {
    background: #2563eb;
}

.reservation-action-btn.cancel-btn {
    background: #ef4444;
    color: white;
}

.reservation-action-btn.cancel-btn:hover {
    background: #dc2626;
}

.reservation-action-btn.qr-btn {
    background: #10b981;
    color: white;
}

.reservation-action-btn.qr-btn:hover {
    background: #059669;
}

/* 예약 상세 모달 스타일 */
.reservation-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.detail-section h4 {
    margin: 0 0 1rem 0;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.detail-value.status-confirmed {
    color: #059669;
}

.detail-value.status-pending {
    color: #d97706;
}

.detail-value.status-cancelled {
    color: #dc2626;
}

.reservation-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-danger {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

/* 예약 수정 모달 추가 스타일 */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.price-summary {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #e2e8f0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

/* 모바일 반응형 추가 */
@media (max-width: 768px) {
    .reservation-actions {
        flex-direction: column;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary, .btn-danger {
        width: 100%;
    }
}

/* 공지사항 배너 */
.notice-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-bottom: 2px solid #f59e0b;
    padding: 1rem 1.5rem;
    position: relative;
    animation: slideDown 0.5s ease-out;
}

.notice-banner.hidden {
    display: none;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.notice-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.notice-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notice-title {
    font-weight: bold;
    color: #92400e;
    font-size: 1rem;
}

.notice-message {
    color: #78350f;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.notice-close {
    background: rgba(146, 64, 14, 0.1);
    border: 1px solid rgba(146, 64, 14, 0.3);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #92400e;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: bold;
}

.notice-close:hover {
    background: rgba(146, 64, 14, 0.2);
    transform: scale(1.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}