/* Custom TimeTrax header + modules styling */

/* Modules dropdown - modern tiles */
.modules-dropdown-menu {
    min-width: 260px;
    padding: 8px 0;
}

.modules-dropdown-menu .module-switch-item {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    gap: 10px;
    text-decoration: none;
    transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
    .modules-dropdown-menu .module-switch-item {
        transition: background-color 120ms ease-out;
    }
}

.module-switch-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    color: #4b5563;
    font-size: 14px;
}

.module-switch-text {
    display: flex;
    flex-direction: column;
}

.module-switch-name {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.module-switch-description {
    font-size: 11px;
    color: #6b7280;
}

.module-switch-tag {
    margin-top: 2px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b91c1c;
}

.modules-dropdown-menu .module-switch-item--subscribed:hover {
    background-color: #f3f4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.modules-dropdown-menu .module-switch-item--unsubscribed {
    opacity: 0.55;
    cursor: not-allowed;
}

.modules-dropdown-menu .module-switch-item--unsubscribed:hover {
    background-color: transparent;
    transform: none;
    box-shadow: none;
}
