html {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

#grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
}
#grid > button{
    width:100%;
    padding:0;
}

.btn-bench {
    background-color: #4CAF50; /* Green */
    color: white;
}

.btn-picnic {
    background-color: #2196F3; /* Blue */
    color: white;
}

.btn-postbox {
    background-color: #FF5722; /* Deep Orange */
    color: white;
}

.btn-barrier {
    background-color: #9C27B0; /* Purple */
    color: white;
}

.btn-bollard {
    background-color: #FFC107; /* Amber */
    color: black;
}

.btn-bikeparking {
    background-color: #009688; /* Teal */
    color: white;
}

.btn-impassable {
    background-color: #F44336; /* Red */
    color: white;
}

.btn-surface {
    background-color: #795548; /* Brown */
    color: white;
}

.btn-other {
    background-color: #607D8B; /* Blue Grey */
    color: white;
}

#tableWrapper table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
    font-size: 1rem;
}

    #tableWrapper table th, #tableWrapper table td {
        border: 1px solid #ccc;
        padding: 8px 12px;
        text-align: left;
    }

    #tableWrapper table th {
        background-color: #f5f5f5;
        font-weight: bold;
    }

    #tableWrapper table tr:nth-child(even) {
        background-color: #fafafa;
    }

    #tableWrapper table tr:hover {
        background-color: #e0f7fa;
    }
        
a{
    color:blue;
    text-decoration: underline; 
    cursor:pointer;
}

#grid button{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:black;
    font-size:2em;
}
#grid img{
    width:50%;
}

td,th{
}

#latLong{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-size: 1em;
}

.tabs {
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}

.tablinks {
    background: #f1f1f1;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    float: left;
    font-size: 16px;
    transition: background 0.2s;
}

    .tablinks.active, .tablinks:hover {
        background: #ddd;
    }

.tabcontent {
    clear: both;
    padding: 1em 0 0 0;
}

#waitingForLocation{
    position:absolute;
    top:15%;
    left:0;
    width:100vw;
    height:50vh;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items: center;
    display:flex;
    flex-direction: column;
    gap:20px;

    color:white;
}
#waitingForLocation a{
    color: white;
}

#currentAcc{
    font-size:3em;
}

#startTracing, #stopTracing {
    font-size: 2em;
    padding: 30px;
    color: white;
}

#startTracing {
    background: green;
}

#stopTracing {
    background: red;
}

#waitingOptions {
    display: flex;
    flex-direction:row;
    gap: 20px;
}

#waitingOptions button {
    width: 200px;
    height: 100px;
    color:white;
    font-size: 1.5em;
}

#cancelAdd{
    background:red;
}

#override{
    background: green;
}

#settingsTable tr td{
    padding-bottom:1em;
}