.bike-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 84px;
}

.icons-wrapper {
    display: flex;
    text-align: center;
    padding: 10px;
    justify-self: end;
}

.icons-wrapper a {
    width: 80px;
}

.icon-subtext {
    font-size: x-small;
    margin: 0;
}

.bike-icon {
    height: 30px;
    width: 30px;
}

.bike-section {
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
    min-width: 708px;
}

.bike {
    display: flex;
    margin-top: 33px;
    height: 200px;
    background-color: white;
    border-radius: 20px;
    padding: 5px;
    filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
}

.bike-title {
    margin: 5px 0;
}

.bike-image {
    height: 200px;
    width: 200px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    object-fit: cover;
}

.bike-info {
    margin: 5px 15px;
    width: 100%;
}

.bike-entries {
    background-color: white;
    border-radius: 20px;
    padding: 15px;
    filter: drop-shadow(0px 3px 15px rgba(0, 0, 0, 0.1));
}

.bike-specs {
    display: flex;
    font-style: italic;
    font-size: medium;
}

.bike-detail {
    margin: 0 5px;
}

#maintenance-log, #specs-list {
    display: none;
}

.fade-in {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in-out;
	animation-duration: 1s;
}

.bike-section-header {
    display: flex;
    align-items: center;
    max-height: 84px;
    justify-content: end;
}

.entry-headers  {
    text-decoration: underline;
    font-weight: 700;
    font-size: 14px;
}

.entry-record {
    font-size: 14px;
}

.entry-headers, .row {
    display: flex;  /* aligns all child elements (flex items) in a row */
}
  
.col {
    flex: 1;        /* distributes space on the line equally among items */
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {

    h2#maintenance-log-bike-name, h2#specs-list-bike-name {
        text-align: center;
    }

    .bike-section {
        min-width: 0;
        max-width: fit-content;
    }

    .bike {
      display: block;
      height: fit-content;
    }

    .bike-image {
        height: 200px;
        width: 100%;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
    }

    .bike-info {
        margin: 0;
    }

    .bike-header {
        display: block;
        max-height: fit-content;
    }

    .bike-section-header {
        justify-content: center;
    }

  }