.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 20px;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box; /* Include padding in element's total width */
    flex-wrap: wrap;
    gap: 10px;
}

.navbar-left {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.app-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 10px;
    flex-shrink: 0;
}

.logo-icon {
    max-height: 150px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    max-height: 75px;
    width: auto;
    /* If the text has its own color, ensure it's visible on the navbar background */
}

@media (max-width: 1024px) {
    .logo-icon {
        max-height: 55px;
    }
    .logo-text {
        max-height: 35px;
    }
}

.app-tagline {
    font-size: clamp(0.8rem, 2vw, 2em);
    font-weight: 300;
    color: #e0f2f1; /* A lighter shade for contrast */
    margin-left: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .app-tagline {
        display: none;
    }
}

.navbar-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 20px;
}

.navbar-right a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
}

/* Basic body styling for context */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f7f6;
}

main {
    padding: 20px;
}

h1 {
    color: #d18900;
    text-align: center;
    margin-top: 40px;
}

h2 {
    color: #dd9f1a;
    text-align: center;
    margin-top: 10px;
}

h3 {
    color: #dd9f1a;
    text-align: center;
    margin-top: 5px;
}


/* Styles for the website banner */
.website-banner {
    width: 100%; /* Make the banner responsive */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below image */
    margin-top: 20px; /* Add some space below the h1 */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 20px;
}

/* Call to action section */
.call-to-action {
    text-align: center;
    margin: 40px 0;
}

.call-to-action h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 30px;
}

.login-button {
    display: inline-block;
    padding: 20px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.login-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.login-button-text {
    display: block;
    font-size: 1.5em;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.login-button-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-button-logo img:first-child {
    height: 40px;
    margin-right: 10px;
}

.login-button-logo img:last-child {
    height: 30px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    margin: 0 0 10px 0;
    font-size: 0.9em;
}

footer nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9em;
}

footer nav a:hover {
    text-decoration: underline;
}