body {
    font-family: Arial, sans-serif;
    background-color: rgba(240, 248, 255, 1); /* Light blue background */
    margin: 0;
    padding: 0;
}

#container {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 40px);
}

#folderListContainer {
    flex: 1;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    border-right: 1px solid rgba(211, 211, 211, 1); /* Light gray border */
    padding: 10px;
}

#folderControls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.folder-list {
    list-style-type: none;
    padding: 0;
}

.folder-item,
.video-item {
    display: block;
    margin: 5px 0;
    padding-left: 2em;
    background-repeat: no-repeat;
    background-position: left center;
}

.folder-item span {
    background-image: url('folder-icon.png'); /* Example folder icon */
}

.video-item span {
    background-image: url('video-icon.png'); /* Example video icon */
}

#videoContainer {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(245, 245, 245, 1); /* Light gray background */
    padding: 20px;
}

#video {
    max-width: 100%;
    max-height: 100%;
}

#statusBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    background-color: rgba(220, 220, 220, 1); /* Light gray background */
    box-sizing: border-box;
}

#logoutButtonContainer {
    display: flex;
    align-items: center;
}

#connectionStatus {
    flex: 1;
}

#statusBar.status-connecting {
    background-color: rgba(255, 255, 0, 1); /* Yellow background */
    color: rgba(15, 15, 15, 1); /* Dark gray text */
}

#statusBar.status-connected {
    background-color: rgba(0, 128, 0, 1); /* Green background */
    color: rgba(15, 15, 15, 1); /* Dark gray text */
}

#statusBar.status-disconnected {
    background-color: rgba(255, 0, 0, 1); /* Red background */
    color: rgba(255, 255, 255, 1); /* White text */
}

#statusBar.status-error {
    background-color: rgba(255, 0, 0, 1); /* Red background */
    color: rgba(255, 255, 255, 1); /* White text */
}

#login-container {
    max-width: 300px;
    margin: 100px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 1); /* White background */
    border: 1px solid rgba(211, 211, 211, 1); /* Light gray border */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
}

input {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid rgba(211, 211, 211, 1); /* Light gray border */
    border-radius: 3px;
}

button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 128, 255, 1); /* Blue background */
    color: rgba(255, 255, 255, 1); /* White text */
    cursor: pointer;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

button:hover {
    background-color: rgba(0, 102, 204, 1); /* Darker blue background */
}
