/* General styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    padding-top: 56px; /* Height of the navbar */
}

#map {
    height: calc(100%);
    width: 100%;
}

.navbar {
    z-index: 9999;
}

/* Specific modal dialog widths */
.modal-dialog.add-control-modal {
    max-width: 800px;
}

.modal-dialog.login-modal,
.modal-dialog.signup-modal {
    max-width: 400px;
}

/* Media queries for responsiveness */
@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-end;
        background-color: #f8f9fa;
    }

    .navbar-nav .nav-item {
        display: block;
        width: 100%;
        text-align: right;
        margin-bottom: 0.5rem;
        background-color: #f8f9fa;
    }
}

#search-container {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 300px;
}

#pac-input {
    width: 100%;
    background-color: #fff;
    font-family: Roboto, Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    height: 40px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#pac-input:focus {
    border-color: #4d90fe;
    outline: none;
}