.header {
    background-color: #585f63;
    height: 64px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #585f63;
}

.toolbar {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    justify-content: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    height: 64px;
    padding-left: 16px;
}

.logo-text {
    font-size: 24px;
    margin-left: 8px;
    font-size: 1.4em;
    font-weight: bolder;
    cursor: pointer;
    outline: none;
    color: #009ee1;
}

.fill-space {
    flex-grow: 1;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-button {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-left: 16px;
}

.nav-button .material-icons {
    margin-right: 4px;
}

.avatar-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.dropzone {
    width: 80%; 
    height: 60px; 
    border: 2px dashed #ccc; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-left: 16px;
}

#swf-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 84px); /* Adjust height to fit within the viewport minus header */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:4px;
}

ruffle-player {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #585f63;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 20px;
    background-color: #585f63;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


.footer a {
    color: white;
    margin: 0 4px; /* Add margin to ensure proper spacing */
}