/* Announcement alert message */
.announcement-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.announcement-body {
    display: flex;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.icon-container {
    flex-shrink: 0;
    background-color: #ffc107;
    padding: 15px;
    display: flex;
    align-items: center;
}
.announcement-icon {
    max-width: 100%;
    min-width: 25px;
    height: auto;
}
.text-container {
    padding: 15px;
    flex: 1;
}