﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#videoBackground {
    background-color: black !important;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #6200ee;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
}

.my-float {
    margin-top: 15px;
    width: 30px;
    height: 30px;
}

/* Center the content horizontally and vertically */
#outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0; /* Light grey background color */
}

/* Style the container box with drop shadow */
#container {
    background-color: #ffffff; /* White background color for the container */
    border-radius: 10px; /* Rounded corners for the container */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Add a slightly stronger drop shadow */
    padding: 20px; /* Add padding inside the container */
    text-align: center; /* Center text within the container */
    display: inline-block; /* Make the container size fit its content */
}

.text-labels {
    text-align: left;
}

/* Style the centered h3 header */
h1 {
    display: table;
    margin: auto;
    color: #666; /* Dark grey text color */
    font-weight: bold;
    font-size: 50px; /* Adjust the font size as needed */
    margin-bottom: 20px; /* Add some spacing below the header */
}

h3 {
    color: #666; /* Dark grey text color */
}

h4 {
    margin: 0;
    color: #666; /* Medium grey text color */
    display: inline; /* Display h5 elements inline with the content */
}

/* Style headings and inputs */
h5 {
    margin: 0;
    color: #666; /* Medium grey text color */
    display: inline; /* Display h5 elements inline with the content */
}

h6 {
    margin: 0;
    color: #666; /* Medium grey text color */
    display: inline; /* Display h5 elements inline with the content */
}

input[type="text"] {
    width: 100%;
    padding: 12px; /* Increase padding for better input field aesthetics */
    margin: 10px 0; /* Adjust margin for input fields */
    border: 2px solid #ccc; /* Medium grey border color */
    border-radius: 5px; /* Rounded corners for input fields */
    outline: none; /* Remove input field outline on focus */
    transition: border-color 0.3s ease; /* Add a smooth transition for border color */
}

    input[type="text"]:focus {
        border-color: #888; /* Dark grey border color on input focus */
    }

/* Style buttons */
.mdc-button {
    margin: 10px;
    background-color: #333; /* Dark grey button background color */
    color: #fff; /* White text color for buttons */
    border: none;
    border-radius: 5px; /* Rounded corners for buttons */
    padding: 12px 20px; /* Add padding to buttons */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Add a smooth transition for button background color */
}

    .mdc-button:hover {
        background-color: #666; /* Medium grey button background color on hover */
    }

/* Style the connection state */
#connection-state {
    margin-top: 10px;
    font-weight: bold;
    color: #333; /* Dark grey color for connection state */
}

/* Style the footer */
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Dark grey background color for the footer */
    color: #fff; /* White text color for the footer */
    padding: 10px 0; /* Add padding to the footer */
    text-align: center;
}

    #footer p {
        margin-top: 0px;
        margin-bottom: 0px;
        font-weight: bold;
    }

    #footer button {
        margin: 10px;
    }

#mobile-message {
    display: none;
}


/* Media query for screens with a maximum width of 768px (common tablet width) */
@media screen and (max-width: 768px) {
    #container-inner {
        display: none; /* Hide the container contents */
    }

    /* Show a message when the container is hidden */
    #mobile-message {
        display: block;
        text-align: center;
        font-size: 20px;
        padding: 20px;
        background-color: #f0f0f0; /* Light grey background color for the message */
    }
}
