/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Navigation Bar */
nav {
    background-color: #004d40;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav .login-btn {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 15px;
}

nav .login-btn:hover {
    background-color: #00332e;
}

/* Header Section */
header {
    background-color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

header img {
    max-width: 150px;
    margin-bottom: 15px;
}

header h1 {
    font-size: 36px;
    margin: 10px 0;
}

header p.lead {
    font-size: 18px;
    color: #555;
}

/* Main Content Styling */
main {
    padding: 20px;
}

main section {
    margin-bottom: 40px;
}

main img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer Styling */
footer {
    background-color: #004d40;
    color: white;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
}

#cookie-banner button {
    background-color: #00b4d8;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

#cookie-banner button:hover {
    background-color: #0077b6;
}

#cookie-banner a.small-link {
    font-size: 12px;
    margin-left: 15px;
    color: #00b4d8;
}

/* Modal Popup Styling */
#tracker-block-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

#tracker-block-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

#tracker-block-modal-content button {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}

#tracker-block-modal-content button:hover {
    background-color: #00332e;
}

/* Dim Background */
#dim-background {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}