/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');*/

:root {
    --submit-button-color: #3498db;
    --gridit-button-color: blue;
}

.button {
    background-color: var(--gridit-button-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
}

.is-large {
    font-size: 24px;
    height: 50px;
}

.is-fullwidth {
    width: 100%;
}

* {
    box-sizing: border-box;
    padding: 2px;
    margin: 2px;
}

.center-horizontal {
    left: 50%;
    transform: translate(0%, -50%);
}

body {
    background-color: #f9fafb;
    font-family: 'Open Sans', sans-serif;
    display: block;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.targets_table {
    padding: 2px;
    border: 2px solid black;
    margin: 2px auto;
}

.target_name_cell {
    padding: 2px;
    width: 400px;
}

.target_link_cell {
    padding: 2px;
    width: 400px;
    border: 1px solid black;
}

.gridit_controls {
    display: flex;
    justify-content: center;
    margin: 0 0 12px;
}

.seasonal_cell {
    padding: 2px;
    width: 200px;
    height: 200px;
    border: 1px solid black;
}

.monthly_cell {
    padding: 2px;
    width: 150px;
    height: 150px;
    border: 1px solid black;
}

.weekly_cell {
    padding: 2px;
    width: 100px;
    height: 100px;
    border: 1px solid black;
}

.hidden {
    display: none;
}

.daily_cell:hover {
    background-color: lightblue;
}

.numbers {
    width: 15px;
    height: 15px;
    line-height: 10px;
    border-radius: 50%;
    margin: 2px;
    font-size: 8px;
    text-align: center;
    background-color: rgb(50, 50, 50);
    color: white;
    padding: 3px;
}

.identity {
    /*width: 15px;*/
    /*height: 15px;*/
    /*line-height: 12px;*/
    border: black solid 3px;
    border-radius: 10%;
    padding: 3px;
    margin: 2px;
    font-size: 10px;
    text-align: center;
    /*background-color: rgb(50, 50, 50);*/
    /*color: white;*/
}

.upper-right {
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 0px;
    padding: 0px;
}

.cell {
    margin-top: 5px;
}

.centered-div {
    display: flex;
    justify-content: center;
}

.gridit_control {
    margin-left: 10px;
    margin-right: 10px;
}

.dailyGrid {
    display: flex;
    justify-content: center;
    margin: 0 0 12px;
}

.grid_counts {
    display: flex;
    justify-content: center;
    margin: 0 0 12px;
}

.grid_counts_table {
    margin-left: auto;
    margin-right: auto;
    border: 2px solid black;
    width: 25%;
}

tr > .grid_counts  {
    width: 200px;
}

.gridit_table {
    margin-left: auto;
    margin-right: auto;
    border: 2px solid black;
}

td {
    text-align: center;
    position: relative;
    width: 40px;
    height: 30px;
}

th {
    text-align: center;
    position: relative;
    width: 40px;
    height: 30px;
}

/*td > div {*/
/*    position: relative;*/
/*    padding: 10px;*/
/*    border-right: 1px solid #ccc;*/
/*}*/

.undone {
    background: red;
}

.done {
    background: lightgreen;
}

h1 {
    text-align: center;
    font-size: 32px;
}

h2 {
    text-align: center;
}

h3 {
    text-align: center;
}

img.strava-logo {
    height: 50px;
}