@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
body, html {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
  background-color: #101010;
  overflow: hidden;
}

.dash-navbar {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.user-avatar {
  background-image: url('assets/male1085093919220.jpg'); /* https://www.fakepersongenerator.com/Face/male/male1085093919220.jpg */
  background-size: cover;
  background-position: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.6);
}

.greetings {
  font-size: 15px;
  font-weight: bold;
  color: #757575;
}

.dash-title {
  font-size: 25px;
  font-weight: bold;
  color: white;
}

.bike-3d {
  display: flex; 
  justify-content: center; 
  align-items: center; 
}
.bike-3d img {
  max-width: 65%; 
  height: auto;
}

.primary-infos {
  display: flex;
  justify-content: space-between;
  color: white;
  padding: 2rem;
}

.primary-infos .status {
  background-color: #212121;
  padding: 10px;
  border-radius: 8px;
  color: #42af67;
  cursor: pointer;
}

.primary-infos .status-value,  .bike-primary-info .detail {
  font-weight: bold;
}

.bike-primary-info .type {
  text-align: right;
  font-size: 15px;
  font-weight: bold;
  color: #757575;
}

.details-drawer {
  height: 50%;
  border-radius: 30px 30px 0 0;
  background-color: #212121; 
  padding: 2rem;
}

.details-drawer .title {
   font-size: 20px;
   font-weight: bold;
   color: white;
}

.details-drawer .container {
  display: grid; 
  grid-auto-columns: 1fr; 
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: repeat(2, 1fr); 
  padding-top: 1rem; 
  gap: 15px 15px; 
  grid-template-areas: 
    "anti-theaves-area travels-log-area"
    "gps-status-area mobile-data-area"; 
}
.anti-theaves-area { grid-area: anti-theaves-area; }
.travels-log-area { grid-area: travels-log-area; }
.gps-status-area { grid-area: gps-status-area; }
.mobile-data-area { grid-area: mobile-data-area; }

.card {
  width: 100%;
  height: 160px;
  border-radius: 20px;
  background: #101010;
  cursor: pointer;
}

.card .icon {
  margin: 1.5rem;
  border: 1px solid #747474;
  border-radius: 50%;
  color: #EFF1F3;
  font-family: "Amazon Ember",sans-serif;
  font-size: 20px;
  padding: 10px 10px;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;       /* Width of the square button */
  height: 20px;      /* Height of the square button */
}

.card .detail {
    margin-left: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: bold;
}
.card .title {
    font-size: 15px;
    font-weight: normal;
    color: #757575;
    padding-left: 1.5rem;
    margin-bottom: 0;
}