/* Dashboard Header - Clean Design */
.dashboard-header-container {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    flex: 1;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-logo {
    height: 50px;
    width: auto;
}

.analytics-badge {
    background: #f5f5f5;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.brand-text {
    flex: 1;
}

.brand-title {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    font-family: 'BradescoSans', sans-serif;
}

.brand-subtitle {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.system-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    min-width: 140px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.info-value {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.quick-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.action-btn {
    min-width: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header-container {
        padding: 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .header-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .system-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-card {
        min-width: auto;
        width: 100%;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
} 