/* Header Universal Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 !important;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right {
    flex-shrink: 0;
}

.welcome-title {
    font-size: 1.0rem;
    margin: 0;
    color: black;
    padding-left: 45px;
}

.user-info {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-name {
    font-weight: 600;
    color: #333;
}
