@charset "utf-8";

/* CSS Document */
* {
    box-sizing: border-box;
}

body {
    font-family: Segoe UI, sans-serif;
    margin: auto;
    margin-top: 5%;
}

h4 {
    color: green;
}

img {
    width: 60%;
    height: auto;
}

input {
    text-align: center;
}

input[type=checkbox] {
    cursor: pointer;
}

input:checked {
    accent-color: lightgreen;
}

input[type=submit] {
    font-weight: bold;
    background-color: lightgreen;
}

table {
    border-collapse: collapse;
    text-align: left;
    width: 90%;
}

table th {
    color: gray;
    font-weight: normal;
}

form {
    padding-bottom: 20px;
}

mark {
    font-size: x-large;
    font-variant: small-caps;
    font-weight: bold;
    font-style: italic;
    background-color: transparent;
    color: #F96;
}

sup {
    display: none;
    font-size: small;
    font-weight: bold;
}

.xremove {
    color: red;
    cursor: pointer;
    font-weight: bold;
}

#ReloadMenuList {
    float: right;
    cursor: pointer;
    font-size: 24pt;
    text-align: right;
}

#EditEvent {
    float: left;
    cursor: pointer;
    font-size: 24pt;
    text-align: left;
}

#RemoveSelectedItems {
    cursor: pointer;
    text-align: center;
    color: white;
    background-color: gray;
}

#TGContainer {
    margin: auto;
    text-align: center;
    margin-top: 20px;
    width: 800px;
    border-style: groove;
    border-radius: 20px;
    padding: 20px;
}

#SLContainer {
    margin: auto;
    text-align: center;
    margin-top: 20px;
    max-width: 600px;
    border-style: groove;
    border-radius: 20px;
    padding: 20px;
}

#TGBanner {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#TGForm {
    text-align: center;
    overflow-x: auto;
    padding-bottom: 20px;
}

#TGInstructions {
    position: relative;
    width: 90%;
    left: 5%;
    text-align: left;
    margin-bottom: 20px;
    background-color: lightyellow;
    border: lightgray solid thin;
    border-radius: 10px;
    padding: 10px;
}

#TGLocation {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    background-color: greenyellow;
    border: lightgray solid thin;
    border-radius: 10px;
    padding: 10px;
}

#Birthdays {
    opacity: 1.0;
    margin: auto;
    width: 80%;
    text-align: center;
    margin-bottom: 20px;
    background-color: lightgray;
    border: lightgray solid thin;
    border-radius: 10px;
    padding: 10px;
    transition-property: opacity;
    transition-duration: 2s;
    transition-timing-function: ease-in-out;
}

#Theme {
    font-style: italic;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    background-color: lightgray;
    border: lightgray solid thin;
    border-radius: 10px;
    padding: 10px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #TGContainer {
        position: relative;
        width: 100%;
        height: auto;
        border-style: none;
    }

    img {
        width: 90%;
        height: auto;
    }

    #SLContainer {
        width: 90%;
    }
}

/* Other devices (desktops, laptops, portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    #TGContainer {
        position: relative;
        width: 600px;
        margin: auto;
        height: auto;
        border-style: solid;
    }
}