/* Container for logos + header text */
#custom-header-container {
    display: flex;
    flex-wrap: wrap;          /* allow logos/text to move to new lines */
    align-items: center;      /* vertical alignment on each row */
    gap: 10px;                /* spacing between items */
    max-width: 100%;          /* prevent overflow */
    box-sizing: border-box;
}

/* All images in header (custom banner + default Indico logo) */
#custom-header-container img {
    max-height: 60px;         /* adjust to fit your header */
    height: auto;
    width: auto;              /* preserve aspect ratio */
}

/* Header text next to logos */
.custom-header-text {
    color: white;
    font-size: 1.5rem;          /* adjust as needed */
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

/* Responsive layout for small screens */
@media (max-width: 600px) {
    #custom-header-container {
        flex-direction: column;  /* stack logos and text vertically */
        align-items: flex-start;
    }

    .custom-header-text {
        margin-top: 5px;         /* spacing below logos */
    }
}
