/* General body and font styles */

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Header container styles */
.header-container {
    background: linear-gradient(to right, #071457, #cdced1);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Left side: logo and title container */
.logo-and-title-container {
    display: flex;
    align-items: center;
    gap: 1rem; /* Replaces Tailwind's space-x-4 */
}

/* Styles for the left logo */
.logo-left {
    width: 6rem; /* Replaces Tailwind's w-24 */
    height: 6rem; /* Replaces Tailwind's h-24 */
    object-fit: contain;
}

/* Header title styles */
.header-title {
    font-size: 1.5rem; /* Replaces Tailwind's text-2xl */
    font-weight: bold;
    color: #ffffff; /* Replaces Tailwind's text-white */
}

/* Media query for larger screens (e.g., desktops) */
@media (min-width: 768px) {
    .header-title {
        font-size: 1.875rem; /* Replaces Tailwind's md:text-3xl */
    }
}

/* Right logo container styles */
.logo-right-container {
    display: flex;
    align-items: center;
}

/* Styles for the right logo */
.logo-right {
    width: 3rem; /* Replaces Tailwind's w-12 */
    height: 3rem; /* Replaces Tailwind's h-12 */
    object-fit: contain;
}