.body-container {
    display: flex;
    justify-content: start;
    align-items: flex-start;
}

.header-menu {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 10px;
}

.menu {
    flex: 0 0 200px; /* Fixed width, adjust as needed */
}

#emailList {
    margin-top:10px;
    width: 100%;
    border-collapse: collapse;
}

#emailList th, #emailList td {
    padding: 8px;
    border: 1px solid #ddd;
}

#emailList th {
    background-color: #f2f2f2;
}

#emailList .unread {
    background-color: white;
    font-weight: bold;
}

#emailList .read {
    background-color: #f9f9f9;
    font-weight: normal;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

#emailList td span {
    cursor: pointer;
}

.abutton {
    margin-top: 2px;
    display: inline-block;
    padding: 2px 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.green {
    background-color: #28a745; /* Green shade */
    border-color: #28a745; /* Green shade */
}

.abutton:hover, .abutton:focus {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
    text-decoration: none;
}

.no-bullets {
    list-style-type: none;
}

.asc-header-bar {
    display: block; /* Ensure the custom element is block-level */
}