.top-bar {
    background: white;
    padding: 20px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.title-subtitle h1 {
    color: #1e3a8a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.title-subtitle p {
    color: #64748b;
    font-size: 14px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.date-display {
    background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #0c4a6e;
    font-weight: 500;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e40af 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}