html {
  font-size: 14px;
}

@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;
    height: 70vh;
}
#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;
}

#featuresTable {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
    font-size: 1rem;
}

    #featuresTable th, #featuresTable td {
        border: 1px solid #ccc;
        padding: 8px 12px;
        text-align: left;
    }

    #featuresTable th {
        background-color: #f5f5f5;
        font-weight: bold;
    }

    #featuresTable tr:nth-child(even) {
        background-color: #fafafa;
    }

    #featuresTable 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{
    font-family: Arial, Helvetica, sans-serif
}