/* static/css/styles.css
body {
    font-family: Arial, sans-serif;
}

.unibox {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 20%;
    background: #f1f1f1;
    padding: 10px;
    border-right: 1px solid #ccc;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.content {
    width: 80%;
    padding: 20px;
}

.primary {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

.email {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.email:last-child {
    border-bottom: none;
}

.email p {
    margin: 5px 0;
} */





/* styles.css */

/* Style for unread emails */
.unread-email {
font-weight: bold;
background-color: #f9f9f9;
}

/* Style for read emails */
.read-email {
font-weight: normal;
background-color: #ffffff;
}

/* Style for email links */
.unread-email a.email-link {
color: #000;
}

.read-email a.email-link {
color: #6c757d;
}

/* Optional: Adjust the cursor to indicate clickable rows */
.email-row {
cursor: pointer;
}

/* Style for the email icons */
.email-row .fa-envelope,
.email-row .fa-envelope-open {
color: #007bff;
}



