/* Main styling for site */
html {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: rgb(206, 206, 212);
    margin: 0;
    overflow-x: hidden;
    height: 100%;
}

main {
    flex: 1
}

/* Removes underlines on links */
a {
    text-decoration: none;
}

/* Header bar styling */
.header {
    background-color: #2c3e50;
    height: 100px;
    font-size: 1.5rem;
    margin: 0px;
}

.header-brand {
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
}

/* Logo sizing */
.clock-logo {
    width: 48px;
    padding: 0px;
}

/* Navigation bar styling */
.menu-bar {
    margin: 0;
    padding: 10px;
    background-color: #2c3e50;
    height: auto;
}

/* Navigatio button styling */
.menu-btn {
    background-color: rgb(206, 206, 212);
}

/* Navigatio button styling when hovering over buttons */
.menu-btn:hover {
    background-color: #34495e;
    color: white !important;
}

/* General styling for pages */
.introduction-header {
    margin-top: 50px;
    margin-bottom: 20px;
}

.introduction-text {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.tracker-intro-text {
    margin-top: 60px;
    font-size: 25px;
}

/* Styling of information panel and trip logs */
.info-display {
    margin-bottom: 60px;
}

.trip-data {
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: #2b3e4f;
    color: white;
    padding: 15px;
}

.trip-list {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #55697b;
    padding: 15px;
    border-radius: 8px;
}

.hidden {
    display: none;
}

strong {
    font-size: 115%;
}

.time-left-card {
    margin-top: 50px;
}

/* Style for when a driving time is acceptable */
.driving-time-acceptable {
    background-color: lightgreen;
    color: black;
    padding: 5px;
    border-radius: 4px;
    font-weight: bold;
}

/* Style for when a driving time is not acceptable */
.driving-time-not-acceptable {
    background-color: red;
    color: white;
    padding: 5px;
    border-radius: 4px;
    font-weight: bold;
}

.card-header {
    background-color: darkgray;
}

/* Styling for buttons */
.continue-btn {
    background-color: #2c3e50;
    color: #fff;
    width: 130px;
    margin-top: 10px;
    margin-bottom: 40px;
    padding: 10px 10px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.continue-btn:hover {
    background-color: #34495e;
    transform: scale(1.05);
    color: #e3e3e3;
}

.btn-remove-log {
    background-color: #2c3e50;
    color: #fff;
    width: 150px;
    margin-top: 20px;
}

.btn-remove-log:hover {
    background-color: #34495e;
    color: #e3e3e3;
}

.btn-add-log {
    background-color: #2c3e50;
    color: #fff;
    width: 150px;
    margin-top: 20px;
}

.btn-add-log:hover {
    background-color: #34495e;
    color: #e3e3e3;
}

.btn-trip-logs {
    margin-top: 80px;
    background-color: #2c3e50;
    color: #fff;
    width: 150px;
}

/* Styling for footer of pages */
.footer-style {
    background-color: #2c3e50;
    max-height: 25px;
    color: white;
    max-width: 100%;
}

/* Styling for copyright social link */
.social-link {
    color: white;
}

/* Styling for copyright social link when hovered over */
.social-link:hover {
    color: black;
}