﻿:root {
    --success: #5E7E3B;
    --fail: #8F0205;
    --warning: #C36416;
    --black: #000000;
    --white: #FFFFFF;
    --silver: #B1B3B4;
    --dark-text: #333;
    --light-text: #fff;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 32px;
}
h2 {
    font-size: 20px;
}
h3 {
    font-size: 16px;
}

h1:focus,
h2:focus,
h3:focus {
    outline: none;
}

/*Buttons*/

.nav-link-container {
    margin: 44px 40px;
    width: 85%;
    min-height: 120px;
    background: var(--white);
    box-shadow: 3px 3px 13px rgba(0, 0, 0, 0.32), 3px 3px 3px rgba(0, 0, 0, 0.16);
    color: var(--dark-text);
    border-radius: 20px;
}

.nav-link-container a.nav-link-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 88px;
    background-color: var(--white);
    color: var(--dark-text);
    text-decoration: none;
    padding: 15px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 1.4em;
    border-radius: 20px;
}

.nav-link-container a.nav-link-button:hover {
    background-color: #f0f0f0;
}

.nav-link-container a.nav-link-button.active {
    background-color: #e0e0e0;
}


/* Scroll Bars */
::-webkit-scrollbar {
    width: 10px; /* Width of the vertical scrollbar */
    height: 10px; /* Height of the horizontal scrollbar */
}

/* Target the scrollbar track (the background area) */
::-webkit-scrollbar-track {
    background: white; /* Dark background for the track */
    border-radius: 10px; /* Rounded corners for the track */
}

/* Target the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #888; /* Grey color for the thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 2px solid white; /* Add a border to make it pop from the track */
}

/* Target the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker grey on hover */
}

/* Target the scrollbar corner (the intersection of horizontal and vertical scrollbars) */
::-webkit-scrollbar-corner {
    background: white; /* Match the track background */
}

.PwaTextField {
    color: white;
    font-weight:500;
}

.PwaButton {
    color: white;
    font-size: 3em;
}

.mud-button {
    font-size: 2.5em !important;
    height: 2.5em;
    background-color: white !important;
    color: black !important;
    text-transform: none !important;
}

.car-park-menu > .mud-button {
    height: 40% !important;
    border-radius: 30px !important;
    font-size: 3em !important;
    font-weight: 600 !important;
    width: 45% !important;
}

.mud-button-icon-size-large > *:first-child {
    font-size: 2.4em !important;
}

.header-action-button {
    margin-right: 1em;
    background: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    font-size: 20px !important;
    grid-column: 3;
}

.mud-message-box .mud-dialog-title .mud-typography-h6 { font-size:2.55em !important;}
.mud-dialog-content {font-size: 2em;}