   
/* ====================================================================================
   Estilos para Menu de Atalhos - Layout Minimalista
   ==================================================================================== */
   
/* Container principal do menu de atalhos */
.atalhos-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
    padding: 0;
    margin-bottom: 15px;
}

/* Header do menu de atalhos */
.atalhos-header {
    background: #ffffff;
    border-radius: 12px 12px 0 0;
    padding: 3px;
    border-bottom: 1px solid #f0f0f0;
}

.atalhos-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.atalhos-title-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.atalhos-icon {
    color: #6b7280;
    font-size: 24px;
}

.atalhos-title {
    color: #5e6166;
    font-size: 12px;
    font-weight: 500;
}

.btn-ocultar-atalhos {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 6px 14px;
    color: #6b7280;
    font-weight: 400;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.btn-ocultar-atalhos:hover {
    background: #eeeeee;
    border-color: #d4d4d4;
}

/* Body do menu de atalhos */
.atalhos-body {
    padding: 15px;
}

.atalhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
    gap: 9px;
    max-width: 100%;
}

/* Item individual do atalho */
.atalho-item {
    display: flex;
    justify-content: center;
}

.atalho-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 9px 6px;
    text-decoration: none;
    color: #6b7280;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    min-height: 82px;
    width: 100%;
    max-width: 105px;
    position: relative;
    overflow: hidden;
}

.atalho-link:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: #4b5563;
    text-decoration: none;
}

.atalho-link:hover .atalho-text {
    text-decoration: none;
}

.atalho-link:visited {
    text-decoration: none;
}

.atalho-link:hover .atalho-icon {
    text-decoration: none;
}

.atalho-link * {
    text-decoration: none !important;
}

.atalho-link:hover * {
    text-decoration: none !important;
}

/* Ícone do atalho */
.atalho-icon {
    background: #f8f9fa;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
    border: 1px solid #e8e8e8;
}

.atalho-icon i {
    font-size: 16px;
}

/* Texto do atalho */
.atalho-text {
    text-align: center;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.3;
    color: #6b7280;
    text-decoration: none;
}

/* Efeito de hover (overlay) */
.atalho-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f8f9fa;
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 7px;
}

.atalho-link:hover .atalho-hover-effect {
    opacity: 1;
}

/* Cores específicas para diferentes tipos de ícones */
.atalho-icon.mail { color: #3b82f6; }
.atalho-icon.calendar_month { color: #10b981; }
.atalho-icon.list { color: #f59e0b; }
.atalho-icon.dining { color: #8b5cf6; }
.atalho-icon.file_present { color: #ef4444; }
.atalho-icon.book_2 { color: #78716c; }
.atalho-icon.refresh { color: #f97316; }
.atalho-icon.play_circle { color: #ec4899; }
.atalho-icon.groups { color: #2563eb; }
.atalho-icon.person { color: #7c3aed; }
.atalho-icon.gamepad { color: #059669; }
.atalho-icon.help { color: #6d28d9; }
