/* Styling for the announcement container */
.announcement-container {
    margin: 20px 0;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Styling for the announcement title */
.announcement-title {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    padding: 10px 0;
    color: #333;
    border-bottom: 1px solid #ddd;
}

/* Styling for the announcement content (initially hidden) */
.announcement-content {
    display: none;
    padding: 10px 0;
    font-size: 16px;
    color: #666;
}

/* Hover effect for the announcement title */
.announcement-title:hover {
    background-color: #eee;
    color: #444;
}
