/* Header styling */
header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

header .d-flex {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.header-right {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-left: auto !important;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    flex-shrink: 0;
}

/* Dark theme header styling */
[data-theme='dark'] header h1 {
    color: #ffffff; /* High contrast white */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Add subtle shadow for better readability */
}
