/* main.css - ath_status */

a {
    color: #e9f3ffff;
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover {
    color: #b8d6ffff;
}

body {
    background-color: #eaf2fb;
    font-family: 'Open Sans', sans-serif;
}

.container {
    width: 100%;
    background-color: #eaf2fb;
    display: flex;
    justify-content: center;
}

.centered {
    width: 1280px;
    height: 720px;
    background-color: #4169e1;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 24px 0 #b6c6e6;
}

.inner-left {
    background-color: #fafdff;
    width: 70%;
    height: 100%;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    float: left;
}

.inner-right {
    background-color: #4169e1;
    width: 29%;
    height: 100%;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    float: right;
}

.box_left {
    margin: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.box_right {
    width: 100%;
}

.box_right h2 {
    color: #ffffff;
    text-align: center;
    background-color: #2e4fa3;
    height: 60px;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 2px 12px 0 #b6c6e6;
}

.box_right h2 span {
    padding-top: 5px;
}

.box_left table thead tr td {
    border: #b6c6e6 1px solid;
    background-color: #eaf2fb;
    border-radius: 5px;
    color: #4169e1;
    padding-left: 5px;
    padding-right: 5px;
}

.box_left table tbody tr td {
    color: #2e4fa3;
}

.box_left table {
    background-color: #fafdff;
}

/* color scheme: logo blue #4169e1, accent #2e4fa3, background #eaf2fb, white #fafdff, shadow #b6c6e6, text #2e4fa3 */

#big-chart-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 40, 80, 0.7);
    align-items: center;
    justify-content: center;
}

#big-chart-modal .modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px #2e4fa3;
    padding: 32px 48px 16px 48px;
    position: relative;
    min-width: 800px;
    min-height: 400px;
    max-width: 98vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#big-chart-title {
    font-size: 1.5em;
    color: #2e4fa3;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
}

#big-chart-modal button.close-btn {
    position: absolute;
    top: 8px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2em;
    color: #2e4fa3;
    cursor: pointer;
}