/* Custom Header for OJS Default Theme */
.header {
    background-color: #2a3a45; /* Dark blue background color */
    display: flex;
    align-items: center;
    padding: 10px 20px; /* Space around the content */
    color: white; /* White text for contrast */
    font-family: 'Arial', sans-serif; /* Simple and clean font */
}

/* Logo styling */
.header img {
    max-height: 80px; /* Scale the logo to fit the header */
    margin-right: 20px; /* Space between the logo and text */
}

/* Text styling */
.header h1 {
    font-size: 24px; /* Title font size */
    font-weight: bold;
    margin: 0;
}

.header p {
    font-size: 14px; /* ISSN font size */
    margin: 5px 0 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .header h1 {
        font-size: 20px;
    }

    .header p {
        font-size: 12px;
    }
}
