header h1 {
    margin: 1em 0 4px 0;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

header {
    background: #ffcc00;
    padding: 0px;
    font-size: 19px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* MAP */
#map {
    width: 100%;
    height: 35vh;
}

/* UPDATES */
#updates {
    box-sizing: border-box;
    padding: 15px;
    background: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    overflow-y: auto;
    /* max-height: 30vh; */
}

/* Updates List */
#updates-list {
    list-style: none;
    padding: 0;
}

#updates-list li {
    background: #ffeeba;
    margin: 10px;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

#updates-list img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 10px;
}

/* REPORT BUTTON */
#report-cat-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

#report-cat-btn:hover {
    background-color: #ff4500;
}

/* REPORT FORM */
#report-form {
    /* position: fixed; */
    bottom: 0;
    width: 100%;
    background: white;
    padding: 8px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: none;
    max-height: 50vh;
    overflow-y: auto;
    box-sizing: border-box;
}

/* FORM BUTTONS */
#cat-report-form button {
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 15px;
    border-radius: 8px;
    font-size: 16px;
}

#location-info {
    background-color: #a9f;    
    width: 100%;
}

#submit-report {
    background-color: #4CAF50;
    height:3em;
}

#close-report {
    background-color: #ff4444;
    height:3em;
}

#cat-report-form button:hover, #close-report:hover {
    opacity: 0.8;
}

/* MENU */
#menu-btn {
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 10px;
}

#menu {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    background: white;
    padding: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    z-index: 100000;
}

#menu ul {
    list-style: none;
    padding: 0;
}

#menu ul li {
    margin: 10px;
}

#menu ul li a {
    text-decoration: none;
    font-size: 18px;
}

/* GDPR Banner */
#gdpr-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: black;
    color: white;
    text-align: center;
    padding: 10px;
}

#accept-gdpr {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

/* LOGIN FORM */
#auth-section {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 80%;
    max-width: 400px;
    padding: 20px;
    background: white;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    border-radius: 10px;
    text-align: center;
}