/* ============================================
   TOPBAR STYLES - EdoisFilms System
   UI Limpa e Minimalista
   ============================================ */

/* Topbar Base */
.topbar {
    position: fixed;
    top: 0;
    left: var(--sidebar-width, 16rem);
    right: 0;
    height: 4rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 30;
    transition: left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

/* User Menu Container - Remover TODOS os fundos e bordas */
.topbar .relative {
    position: relative;
}

.topbar .relative > button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.topbar .relative > button:hover,
.topbar .relative > button:focus,
.topbar .relative > button:active {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
}

/* Avatar - SEM bordas */
.topbar img.rounded-full {
    border: none !important;
    box-shadow: none !important;
}

.topbar .rounded-full {
    border: none !important;
}

/* Texto do usuário */
.topbar .text-left p {
    margin: 0;
    padding: 0;
}

.topbar .text-left p.text-sm {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.topbar .text-left p.text-xs {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Sininho de Notificação - Limpo com hover roxo */
.topbar button.text-gray-500 {
    background: transparent !important;
    border: none !important;
    color: #6b7280;
    transition: color 0.2s ease;
}

.topbar button.text-gray-500:hover {
    color: #8b5cf6 !important;
    background: transparent !important;
    border: none !important;
}

.topbar button.text-gray-500:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Search Bar */
.topbar input[type="text"] {
    width: 20rem;
    padding: 0.5rem 0.75rem;
    padding-left: 2.5rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    transition: all 0.2s;
}

.topbar input[type="text"]:focus {
    border-color: #8b5cf6;
    ring: 2px;
    ring-color: #8b5cf6;
}

/* Dropdown Arrow */
.topbar svg.text-gray-400 {
    color: #9ca3af;
}

