body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #FFFFFF !important;
    color: #fff; 
}

h1 {
    color: #FFFFFF;
}

.navbar {
    background-color: #333; 
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
}

.title {
    margin-left: 1rem;
}

.logo{
  height: 7rem;
}


.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
}

figure figcaption {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 0.5rem;
    border-radius: 4px;
}   

.title {
    margin-left: 1rem;
}

.car-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
    margin: auto;
}

.car-gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.car-gallery a.active {
    outline: 3px solid #333;
    border-radius: 6px;
}

#main {
    position: relative;
    z-index: 20;
    transition: transform .6s ease;
}

html.show-detail #main {
    transform: translateX(-30%);
}

#aside {
    position: absolute; 
    top: 1.5rem; 
    right: -30%; 
    width: 30%;
    height: 100%; 
    /* background: #eee; */
    overflow-y: auto;
    z-index: 25; 
    padding: 1rem;
    padding-top: calc(100px + 2rem);
    transition: right 0.3s ease; 
    box-sizing: border-box; 
}

html.show-detail #aside {
    right: 0; 
}

#aside .hidden_img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.hidden {
    display: none;
}

.btn-close {
    position: absolute;
    top: calc(100px + 0.5rem); 
    right: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #000;
  color: #FFF;
  z-index: 9999;
  border: 2px solid #FFD700;
}