/* Archivo restaurado: dashboard.css */
.dashboard {
    position: relative;
    margin-left: 18px;
}
.dashboard-icon {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}
.dashboard-icon:focus {
    outline: none;
    background: #ffd7d7;
}
.dashboard-icon svg {
    display: block;
    transition: filter 0.2s;
}
.dashboard-icon:hover svg {
    filter: drop-shadow(0 0 4px #b30000);
}
.dashboard-menu {
    position: absolute;
    top: 38px;
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: none;
    flex-direction: column;
    z-index: 100;
}
.dashboard-menu a {
    padding: 12px 18px;
    color: #b30000;
    text-decoration: none;
    font-size: 1em;
    border-bottom: 1px solid #f3f3f3;
    transition: background 0.2s, color 0.2s;
}
.dashboard-menu a:last-child {
    border-bottom: none;
}
.dashboard-menu a:hover {
    background: #ffd7d7;
    color: #222;
}
@media (max-width: 900px) {
    .header {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }
    .header-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    nav {
        justify-content: flex-start;
        margin-top: 10px;
    }
    .header-right {
        margin-top: 10px;
        justify-content: flex-end;
    }
}
