
.agendaItem:hover {
    cursor: pointer;
    background: lightgray;
}

.big-bold {
    font-weight:bold;
    font-size:18px;
}

button.marker {
    margin: .25em;
    border-radius: 0;
    cursor: pointer;
    background: white;
    padding:.5em .5em .5em 1.5em;
}

.contained-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#divGetStartTime {
    margin-left: 2em;
}

#divGetEndTime {
    margin-left: 2em;
}

#docBox {
    margin-left: .25em;
    flex: 2;
    flex-basis: 490px;
}

.flex-div {
    display: flex;
    justify-content: space-between;
}

#flexVideoLayout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#follow-along-container {
    margin: .5em;
}

#follow-along-div {
    display: none;
}

#follow-along-div.visible {
    display: block;
}

.icon-img {
    width: 1em;
}

.iframe-container {
    position: relative;
    //width: 100%;
    height: 400px;
    //min-height: 70vh;
    //max-height: 70vh;
    overflow: hidden;
}

#iframe-container-fixed iframe {
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

#iframe-container-fixed {
    height: 70vh;
}

.iframe-scroll {
    /* This helps iOS scroll around iframes */
    /* Note: October 2024 - no longer seems necessary */
    /*overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;*/
}

.invisible {
    display: none;
}

li.agendaItem {
    list-style-type: circle;
    font-size: 14px;
}

li.bill {
    list-style-type: circle;
    font-size: 14px;
}

li.bill:hover {
    background: lightgray;
    cursor: pointer;
}

li.document {
    display: list-item;
    list-style-type: circle;
    font-size: 14px;
}

li.document:hover {
    background: lightgray;
    cursor: pointer;
}

#markers button.recording {
    padding-left:.5em;
}

.marker:nth-child(odd){
    background: #e9e9e9;
}

.marker:hover {
    background: lightgray;
    cursor: pointer;
}

.marker.active {
    background: #febc2a;
}

.marker.live {
    background: #febc2a;
    border: 1px solid lightgray;
}

.media-tab {
    border-bottom: 1px solid black;
    display:flex;
}

.media-tab button {
    border: none;
//    outline: none;
    cursor: pointer;
    background-color: lightgray;
    display: inline;
    border-radius: 0px;
    margin-bottom: 0px;
//    padding: 8px;
    font-size: small;
    margin-right: 2px;
}
.media-tab button:hover {
    background-color: #ddd;
}

.media-tab button.active {
    background-color: #232C39;
    color: white;
}

.media-tab button.invisible{
    display: none;
}

.media-tab-content {
    display: none;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    overflow-y: scroll;
    max-height: 50vh;
    border-right: 1px solid black;
}

.media-tab-content.active {
    display: block;
}

#meetingContainer{
    display: flex;
}
#meetingContainer #joinLinkContainer{
    text-align: right;
    margin-top: auto;
    margin-bottom: auto;
    flex-grow: 1;
}

#not-playing-img {
    width: 100%;
    align-self: center; /* So it doesn't get warped by the flexbox */
}

.obviousLink {
    text-decoration: underline;
}

.shareDiv {
    margin-left: 1em;
    margin-top: .5em;
}

#shareLink {
    background: transparent;
    border: none;
    width: 100%;
    margin-top: .5em;
    text-overflow: ellipsis;
}
.shareLinkArea {
    margin: 1em;
    padding: 0.25em;
    background: lightgray;
    display: flex;
    justify-content: space-between;
}

.shareLinkItemLarge {
    flex-grow: 3;
}

.shareLinkItemSmall {
    text-align: right;
    flex-grow: 1;
}

#stoppedStreamingDiv {
    display: none;
}

#stoppedStreamingDiv.visible {
    display: block;
}

#stoppedStreamingDiv h2 {
    font-size:1em;
}

#tabcontent-container #markers button {
    display:block;
    width:100%;
    text-align:left;
}

#tabcontent-container button.largeScreen {
    width:100%;
    text-align:left;
    background:transparent;
    padding:0 .5em;
}

#tabcontent-container .agendaItem button.largeScreen {
    width:90%;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

ul.withBullet {
    padding-left: 1em;
    margin-left: 5px;
}

#videoAndHistory {
    flex: 1;
    margin-right: .25em;
    flex-basis: 300px;
    height: 100%;
    margin-bottom: 1em;
}

#videoBox {
    margin: 1em;
    max-height: 20%;
    background-color: #3e3e3e;
    display: flex; /* So the "Not Currently Streaming" image will center vertically */
}

/* For phones, tablets */
@media only screen and (max-width: 800px) {
    .largeScreen {
        display: none;
    }
}

@media only screen
and (min-width: 801px){
    .smallScreen {
        display: none;
    }
}