/* Set #f5f5f5 as --color-background */
:root {
    --color-background: #f5f5f5;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    max-width: min(100vw, 720px);
    background-color: var(--color-background);
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    flex: 1;
    overflow: auto;
    padding: 20px;
}

.dropdown {
    position: relative;
    width: 200px;
}

.dropdown-btn {
    background-color: #fff;
    color: #333;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 12px;
}

.dropdown-btn:after {
    content: "▼";
    /* font-size: 12px; */
    position: absolute;
    right: 12px;
    top: 50%;
    color: #4dcddd;
    transform: translateY(-50%);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1;
    margin-top: 4px;
    border: 1px solid #ddd;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-btn {
    background-color: #f9f9f9;
}

.question-img {
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
}

.logo {
    width: 70%;
    height: auto;
}

#no-announcements {
    max-width: 70%;
    align-items: center;
    background-color: rgba(4, 148, 168, 0.15);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

#slideshowCard {
    background-color: var(--color-background);
    box-shadow: none;
}

.uk-transition-active video {
    border-radius: 22px;
}

#announcementPage {
    background-color: var(--color-background);
    padding: 20px;
    border-radius: 12px;
}