body {
    background-color: #e0f7fa;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    height: 500px;
    background-color: rgba(181, 203, 210, 0.273);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(225, 55, 55, 0.1);
    max-height: 500px;
    max-width: calc(100% - 20px);
    overflow-y: scroll;
    overflow-x: hidden;
}

.container::-webkit-scrollbar {
    width: 12px;
}

.container::-webkit-scrollbar-track {
    background: rgba(0, 0, 139, 0.1);
    border-radius: 10px;
}

.container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 139, 0.5);
    border-radius: 10px;
}

.container {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 122, 208, 0.284) rgba(0, 0, 139, 0.1);
}

.header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.dropdown {
    width: 6cm;
    background-color: #e0f7fa;
    border: 1px solid #b5cbd2;
    border-radius: 5px;
    padding: 5px;
    height: 30px;
    margin-bottom: 10px; 
}

.left-panel {
    display: flex;
    flex-direction: column;
    gap: 1cm; 
}

.content {
    display: flex;
    gap: 20px;
    width: 100%;
    padding: 10px 0;
}

.mitarbeiter-list {
    width: 6cm;
    background-color: #e0f7fa;
    border: 1px solid #b5cbd2;
    border-radius: 5px;
    padding: 10px;
    overflow-y: scroll; 
    height: 410px; 
    gap: 1cm;
}

.mitarbeiter-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mitarbeiter-list li {
    padding: 8px;
    border-bottom: 1px solid #ccc;
}

.mitarbeiter-list::-webkit-scrollbar {
    width: 12px;
}

.mitarbeiter-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 139, 0.1);
    border-radius: 10px;
}

.mitarbeiter-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 139, 0.5);
    border-radius: 10px;
}

.mitarbeiter-list {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 122, 208, 0.284) rgba(0, 0, 139, 0.1);
}


.email-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #b5cbd2;
    border-radius: 5px;
    padding: 10px;
    background-color: #e0f7fa;
    height: 450px; 
}

textarea {
    width: 100%;
    height: 500px; 
    resize: none;
    padding: 10px;
    box-sizing: border-box;
}

#send-button {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    border-radius: 5px;
}

#send-button:hover {
    background-color: green;
}

.email-item {
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.view-button {
    background-color: blue;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.view-button:hover {
    background-color: rgba(0, 128, 0, 0.5); 
}

.search-box {
    padding: 5px;
    border: 1px solid #b5cbd2;
    border-radius: 5px;
    width: 6cm;
    box-sizing: border-box;
    background-color: #ffffff;
}

datalist option {
    padding: 8px;
    border-bottom: 1px solid #ccc;
    background-color: #ffffff;
    border-radius: 3px;
    display: block;
}

.email-content {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    overflow-y: auto;
}

.email-content::-webkit-scrollbar {
    width: 12px;
}

.email-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 139, 0.1);
    border-radius: 10px;
}

.email-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 139, 0.5);
    border-radius: 10px;
}

.email-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 122, 208, 0.284) rgba(0, 0, 139, 0.1);
}
