  .notice-container {
            margin: 30px auto;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .notice-header {
            background: linear-gradient(135deg, #a32024 0%, #c93c40 100%);
            color: white;
            padding: 30px 40px;
            text-align: center;
        }
        
        .notice-header h1 {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .notice-header .subtitle {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .notice-body {
            padding: 40px;
        }
        
        .section {
            margin-bottom: 35px;
        }
        
        .section-title {
            color: #a32024;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .holiday-date {
            display: flex;
            align-items: center;
            background-color: #f9f2f2;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 25px;
            border-left: 5px solid #a32024;
        }
        
        .date-icon {
            background-color: #a32024;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .date-info {
            flex-grow: 1;
        }
        
        .date-info h3 {
            color: #a32024;
            font-size: 20px;
            margin-bottom: 8px;
        }
        
        .date-range {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }
        
        .work-date {
            color: #666;
            margin-top: 5px;
        }
        
        .duty-arrangement {
            background-color: #f0f7ff;
            padding: 25px;
            border-radius: 8px;
            margin-top: 20px;
            border-left: 5px solid #4a6fa5;
        }
        
        .duty-arrangement h3 {
            color: #4a6fa5;
            margin-bottom: 15px;
            font-size: 20px;
            display: flex;
            align-items: center;
        }
        
        .duty-arrangement h3 i {
            margin-right: 10px;
        }
        
        .duty-points {
            list-style-type: none;
            padding-left: 5px;
        }
        
        .duty-points li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            margin-bottom: 8px;
        }
        
        .duty-points li:before {
            content: "•";
            color: #4a6fa5;
            font-size: 24px;
            position: absolute;
            left: 0;
            top: 8px;
        }
        
        .departments-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .dept-tag {
            background-color: white;
            padding: 12px 20px;
            border-radius: 6px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            font-weight: 600;
            color: #333;
            border-left: 4px solid #a32024;
            width: 7%;
        }
        
        .responsibilities-list, .notes-list {
            list-style-type: none;
            padding-left: 5px;
        }
        
        .responsibilities-list li, .notes-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .responsibilities-list li:before, .notes-list li:before {
            content: "•";
            color: #a32024;
            font-size: 24px;
            position: absolute;
            left: 0;
            top: 8px;
        }
        
        .notes-list li:before {
            color: #4a6fa5;
        }
        
        .contact-info {
            background-color: #f9f2f2;
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
            border-left: 5px solid #a32024;
        }
        
        .contact-info h3 {
            color: #a32024;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .emergency-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
        }
        
        .contact-item {
            background-color: white;
            padding: 15px;
            border-radius: 6px;
            flex: 1;
            min-width: 200px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .contact-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }
        
        .contact-role {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .contact-phone {
            color: #a32024;
            font-weight: 600;
            font-size: 18px;
        }
        
        .notice-footer {
            background-color: #f5f5f5;
            padding: 30px 40px;
            text-align: right;
            border-top: 1px solid #eee;
        }
        
        .company-name {
            font-size: 20px;
            color: #a32024;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .department-name {
            color: #666;
            margin-bottom: 5px;
        }
        
        .notice-date {
            color: #888;
            font-size: 15px;
        }
        
        .holiday-wish {
            text-align: center;
            font-size: 22px;
            color: #a32024;
            margin-top: 30px;
            padding: 20px;
            background-color: #f9f2f2;
            border-radius: 8px;
            font-weight: 600;
        }
        
        .deadline-box {
            background-color: #fff8e1;
            padding: 20px;
            border-radius: 8px;
            margin-top: 25px;
            border: 2px dashed #ffb300;
            text-align: center;
        }
        
        .deadline-title {
            color: #ff6f00;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .deadline-date {
            color: #a32024;
            font-weight: 700;
            font-size: 22px;
        }
        
        @media (max-width: 768px) {
            .notice-header {
                padding: 25px 20px;
            }
            
            .notice-header h1 {
                font-size: 26px;
            }
            
            .notice-body {
                padding: 25px 20px;
            }
            
            .holiday-date {
                flex-direction: column;
                text-align: center;
            }
            
            .date-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .emergency-contact {
                flex-direction: column;
            }
        }
        
        .print-btn {
            display: inline-block;
            background-color: #a32024;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        
        .print-btn:hover {
            background-color: #8a1a1e;
        }