/* General body styling */
html, body {
    height: 100%; /* Ensure body takes up the full height of the viewport */
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Header */
header {
    position: fixed; /* Fix the header at the top */
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    z-index: 1000; /* Ensures header stays on top of content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Small shadow for visibility */
}

/* Logo */
.logotop {
    width: 100px;
    height: auto;
    cursor: pointer;
}

/* Navigation */
.containerLeftUl {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: end;
}

.containerLeftUl li {
    display: flex;
    align-items: center;
}

.containerLeftUl a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.containerLeftUl a:hover {
    color: orange;
}

.containerRight {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerRightAlt {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Main content area (yield) */
body {
    display: flex;
    flex-direction: column; /* Make sure we stack elements */
    height: 100%;
    background-color: #f8f9fa;
    color: #333;
}

.yield {
    padding: 20px;
    margin-top: 80px; /* To offset the fixed header */
    flex-grow: 1; /* Take the remaining space */
    background-color: transparent;
    /* Allow the content to scroll when needed */
}

/* Footer */
footer {
    background-color: #ececf6;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds a small shadow above the footer */
    position: relative; /* Positioned at the bottom of the body */
}

/* Custom scrollbar (hidden) */
*::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}
.navbar-nav .nav-link:hover {
    color: #007BFF; /* Bootstrap primary blue */
    background-color: rgba(0, 123, 255, 0.1); /* Light blue background */
    border-radius: 5px; /* Optional: rounded corners for hover effect */
}
