.acs-tab {
    border: 2px solid #ccc;border-radius: 8px;min-height: 60vh
}
.acs-tab-menu {
    display: flex; flex-direction: row;gap: 8px;
}
.acs-tab-menu-item {
    padding: 8px;
    text-decoration: underline;
    cursor: pointer;
    color: hsl(249, 56%, 47%);
}

.acs-tab-menu-item.active {
    color: black;
    font-weight: bold;
    text-decoration: none;
}
.acs-tab-contents {
   margin-top: 8px;
   padding: 8px;
}
.tab-contents.active {
   display: block;
}
    .tab-contents:not(.active) {
       display:none;
    }

    .acs-tab-hr {
        margin-top: 8px;
        border-bottom: 2px solid #ccc;
    }
.acs-tab-hr > span.active {
    border-bottom-color: red;
    z-index: 2;
    position: absolute;
    
}
.notices {
    max-height: 100px;
    overflow-y: scroll;
}
.information-box {
    margin-top: 8px;
}
.information-box .title{
    color: blue;
    text-decoration: underline;
}
.information-box .title:hover {
        cursor: pointer;
 }

.LogViewerButton {
    text-decoration:none;
}
#station-log-file {
    padding: 8px;
    max-height: 300px;
    overflow-y: scroll;
}
.inline-form-validation {
    display:none;
}

@media (max-width: 768px) {
    .acs-tab-menu {
        display:block;
    }
}

@media screen and (min-width: 576px) {
    .LogViewerButton {
        display: inline-block;
        width: auto;
    }
}
.LogViewerButton {
    height: auto!important;
}

@media all and (max-width:480px) {
    .LogViewerButton {
        background-color: #004a98;
        border: 2px solid #004a98;
        border-radius: 0.25rem;
        box-sizing: border-box;
        color: #ffffff;
        display: block;
        font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        padding: 0.5rem 1.5rem;
        text-align: center;
        text-decoration: none;
        user-select: none;
        cursor: pointer;
        margin-bottom: 0.5rem;
        width: 100%; 
        transition: 0.2s ease-in-out;
    }

}
.LogViewerButton:focus, .LogViewerButton:hover {
    color: inherit;
    outline: inherit;
    background: inherit;
} 