body {
    font-family: 'Raleway', sans-serif;
    background-color: #f5f5f5;
}

nav {
    background-color: #fff;
    box-shadow: 0px 1px 2px #ddd;
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
}

.content {
    margin-left: 180px;
    margin-top: 30px;
    margin-right: 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
}

form input{
    font-family: 'Raleway', sans-serif;
    border: 0;
    height: 30px;
    padding: 5px 15px;
    border-radius: 30px;
    box-shadow: o 1px 5px #ddd;
    outline: none;
    width: 450px;
    display: block;
}

ul {
    padding-left: 0;
}

.mail {
    background-color: #fff;
    list-style: none;
    margin: 0;
    margin-bottom: 15px;
    padding: 10px 15px;
    box-shadow: 0 1px 5px #ddd;
    border-radius: 5px;
}

.mail-content {
    margin: 5px 0 0 0;
    color: #aaa;
}

.email {
    color: #67adda;
}

.button {
    font-size: 14px;
    transition: background-color 0.5s ease;
    background-color: #674dd4;
    color: #fff;
    align-self: center;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
}

.button:hover {
    background-color: #7b62e3;
}

hr {
    border: none;
    height: 1px;
    background-color: #eee;
}

textarea {
    font-family: 'Raleway', sans-serif;
    border: 0;
    height: 250px;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 1px 5px #ddd;
    resize: none;
    width: 450px;
    display: block;
    outline: none;
}

.form-group {
    margin-bottom:15px;
}

form label {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 10px;
}

.flash {
    background-color: red;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    border: solid 1px rgba(0,0,0,0.1);
    margin: 10px 0;
}

/* Estilos para botones de acción en correos */
.mail-actions {
    margin: 10px 0;
    display: flex;
    gap: 8px;
}

.button.small {
    padding: 4px 8px;
    font-size: 0.85em;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.button.delete {
    background-color: #dc3545;
    color: white;
}

.button.delete:hover {
    background-color: #c82333;
    color: white;
}

.button.delete-all {
    background-color: #dc3545;
    color: white;
    margin-left: 10px;
}

.button.delete-all:hover {
    background-color: #c82333;
    color: white;
}

/* Espaciado mejorado para la lista de correos */
.mail {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.mail .email {
    font-weight: bold;
    color: #007bff;
}

.mail .subject {
    font-weight: bold;
    margin-left: 15px;
}

.mail-content {
    margin-top: 10px;
    color: #666;
    line-height: 1.4;
}

/* Estilo para cuando no hay correos */
.no-mails {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-mails p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Estilos para la vista de detalles */
.mail-detail {
    max-width: 600px;
    margin: 0 auto;
}

.mail-detail .field {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.mail-detail .field label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.mail-detail .content {
    background-color: white;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    line-height: 1.5;
    white-space: pre-wrap;
}