.notice-board {
    width: 100%;
    height: calc(3 * 100px); /* Height for 3 notices (adjust 80px based on your notice height) */
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
}

.notice-board ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.notice-board li {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    text-align: left;
}

.notice-icon {
    font-size: 20px;
    margin-right: 10px;
    color: #0073e6;
}

.notice-content {
    display: flex;
    flex-direction: column;
}

.notice-title {
    font-size: 18px;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 5px;
}

.notice-body {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.notice-date {
    font-size: 14px;
    color: #999;
}