/* Announcements Panel */
.announcement-panel {
    position: fixed;
    /* top: 0; */
    right: -550px;
    width: 450px;
	max-width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.announcement-panel.active {
    right: 0;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1;
    color: #343a40;
}

.announcement-header .close-btn {
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.announcement-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: #f4f6f8;
    text-align: center;
}

.announcement-gif {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
