 .notice-board {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        padding: 20px;
        position: relative;
        overflow: hidden;
    }

    .notice-board::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: #dc3545;
        /* red strip */ 
    }

    .notice-title {
        font-size: 20px; 
        font-weight: 700; 
        color: #dc3545;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .notice-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .notice-list li {
        padding: 10px 0;
        border-bottom: 1px dashed #ddd;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .notice-list li:last-child {
        border-bottom: none;
    }
 
    .notice-text {
        font-size: 15px;
        font-weight: 500;
        color: #333;
    }

    .notice-date {
        font-size: 13px;
        color: #666;
        font-style: italic;
    }