﻿/* APschedule.css */
.DivButton {
    border: thick ridge #CCC;
    background-color: #CCC;
    color: #000;
    font-weight: 600;
    font-family: Tahoma, Geneva, sans-serif;
    border-bottom-color: #FFF;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 2vw;
    color: white;
    background-color: black;
}
    body.oneColElsCtrHdr {
        margin: 0;
        padding: 0;
        height: 100vh;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 1rem;
        color: white;
        background-color: black;
        overflow: auto;
    }


#container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 3px solid #000000;
}

#header {
    padding: 10px 20px;
    text-align: center;
}

h1 {
    margin: 2px 0 3px 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: gold;
    font-size: 1.15rem;
    grid-column:2;
    grid-row:2;
}

#MainContent {
    flex-grow: 1;
    background-color: transparent;
    padding: 0 20px;
    overflow: auto;
}

#TBid_img {
    width: 4rem;
    margin:0;
    height: auto;
    z-index: 2;
    grid-column: 1;
    grid-row: auto;
}
.TBnav a {
    grid-column: 2;
    grid-row: 2;
}

.TBnav {
    display: grid;
    grid-template-rows: 3.5em 1fr;
   justify-items:center;
   align-items:start
}
.TBelements {
    stroke: black;
    stroke-width: 5px;
}
.clearfix {
    clear: both;
    display: block;
    width: 100%;
    height: 0;
    overflow: auto;
    visibility: hidden;
}

#MenuBar {
    display: inline-flex;
    gap: 3px;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.3em;
    margin: 0 auto;
    max-width: 90vw;
    z-index:2;
}
    #MenuBar p {
        font-family: 'Roadgeek 2005 Transport';
        padding: 2px 1em 0 1em;
        margin-top: 2vw;
        font-size: 2.5vw;
        font-weight: 10;
        color: white;
        text-decoration: none;
        text-align: center;
        text-shadow: 2px 14px 12px gold,2px 4px 3px black;
        grid-column: 2;
        grid-row: 1;
        z-index: 2;
    }
    #MenuBar a {
        margin: 7px 0;
        z-index: 2;
    }
        .TBelements a:hover {
            font-style: italic;
            text-shadow: 0px -8px 66px gold, 0px 8px 66px gold;
        }

.logo {
    float: left;
    margin: 1vw 0 0 0;
    width: 10vw; /* actual width of logo in terms of scalable font */
    color: transparent;
    animation: glow is ease-in-out infinite alternate;
}

.row-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.first-row {
    background-color: transparent;
}

.second-row {
    flex-grow: 1;
    width: 100%;
    height: 100%;
}

.ObjectRow {
    flex-grow: 1;
    width: 100%;
    height: 100%;
}
.pdf-controls button, .pdf-controls a {
        margin: 0 5px;
        padding: 5px 10px;
        background-color: #ccc;
        border: none;
        cursor: pointer;
        text-decoration: none;
        color: black;
        border-radius:15px;
    }
object {
    width: 100%;
    height: 100%;
    border: none;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);    
}
.pdf-controls {
    text-align: center;
    margin: 10px 0;
}
#Download {
    font-family: 'Roadgeek 2005 Transport', sans-serif;
    padding: 0.5em 1em;
    font-size: 1rem;
    font-weight: 600;
    background-color: gray;
    border-radius: 15px;
    border: 3px groove grey;
    color: black;
    text-decoration: none;
    text-shadow: 2px 2px 4px gold, 1px 1px 2px white;
}
    #Download:hover {
        background-color: #999;
    }
#footer {
    padding: 10px;
    font-family: "Times New Roman", Times, serif;
    font-size: 0.5rem;
    font-weight: bold;
    color: #FFF;
    background-color: #000;
    text-align: center;
}
    #footer p {
        margin: 0;
        padding: 10px 0;
    }
@media screen and (max-width: 768px) {
    #MenuBar p {
        font-size: 1rem;
    }

    #Download {
        font-size: 0.9rem;
    }
}




