
       * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
}


       .notice-board {
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        

        .nheader {
            background: white;
            padding: 30px;
            border-bottom: 4px solid #ec4899;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
.nheader {
    background-color: #fff1f1;
}
        .nheader-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-wrapper {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            padding: 15px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bell-icon {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .nnheader-title h1 {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .nnheader-title p {
            color: #6b7280;
            font-size: 1rem;
        }

        .notice-count {
            background: #fce7f3;
            color: #ec4899;
            padding: 12px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .notice-list {
            background: white;
        }

        .notice-item {
            padding: 25px 30px;
            border-bottom: 1px solid #f3f4f6;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .notice-item:hover {
            background: #f9fafb;
            transform: translateX(5px);
        }

        .notice-item:last-child {
            border-bottom: none;
        }

        .notice-left {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex: 1;
        }

        .priority-section {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .priority-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .priority-high { background: #ec4899; }
        .priority-medium { background: #8b5cf6; }
        .priority-low { background: #3b82f6; }

        .pin-icon {
            width: 16px;
            height: 16px;
            fill: #9ca3af;
        }

        .notice-content {
            flex: 1;
        }

        .notice-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 10px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .notice-item:hover .notice-title {
            color: #8b5cf6;
        }

        .notice-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .date-info {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #6b7280;
            font-size: 0.85rem;
        }

        .calendar-icon {
            width: 14px;
            height: 14px;
            fill: #6b7280;
        }

        .category-tag {
            background: #ede9fe;
            color: #7c3aed;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .priority-tag {
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .priority-tag.high {
            background: #fce7f3;
            color: #be185d;
        }

        .priority-tag.medium {
            background: #ede9fe;
            color: #7c3aed;
        }

        .priority-tag.low {
            background: #dbeafe;
            color: #1d4ed8;
        }

        .arrow-icon {
            width: 20px;
            height: 20px;
            fill: #9ca3af;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .notice-item:hover .arrow-icon {
            fill: #8b5cf6;
            transform: translateX(5px);
        }

        .footer {
            text-align: center;
            margin-top: 30px;
        }

        .view-all-btn {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
        }

        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
            background: linear-gradient(135deg, #7c3aed, #db2777);
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nheader {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .nnheader-title h1 {
                font-size: 2rem;
            }

            .notice-item {
                padding: 20px 15px;
                flex-direction: column;
                gap: 15px;
            }

            .notice-left {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            .notice-meta {
                justify-content: center;
            }

            .arrow-icon {
                align-self: center;
            }
        }

        @media (max-width: 480px) {


            .nnheader-title h1 {
                font-size: 1.8rem;
            }

            .notice-meta {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }
        }