:root {
    --gradientPrimary: #0000cc;
    --gradientSecondary: #00002c;
}

body {
    background-image: linear-gradient(to bottom left, #151515, #606060);
    background-color: black;
    background-size: cover;
    height: 100%;
    background-attachment: fixed;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    text-shadow: 2px 2px 4px #000000;
    margin:0;
}


.small-note {
    color: cyan;
    font-size: 14px;
}




.container {
    background-image: linear-gradient(to bottom right, var(--gradientPrimary), var(--gradientSecondary));
    background-color: #0000cc;
    margin: 10px;
    padding: 10px;
    border-style: solid;
    border-width: 4px;
    border-color: white;
    border-radius: 10px;
    box-shadow: 3px 3px 25px grey;
}

/* Buttons and input */
.input {
    background-color: cyan;
    /* Green */
    border: none;
    /* color: black; */
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    -webkit-transition-duration: 0.2s;
    /* Safari */
    transition-duration: 0.2s;
}

.button {
    background-color: cyan;
    /* Green */
    border: none;
    /* color: black; */
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    -webkit-transition-duration: 0.2s;
    /* Safari */
    transition-duration: 0.2s;
}

.button:hover {
    background-color: blue;
    color: white;
}


.butt {
    text-align: center;
    color: white;
    font-weight: bold;
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin: 0.1em;
    margin-bottom: 0.1em;
    width: 5em;
    border-radius: 0.3em;
    box-shadow: 0 0 3px black;
    user-select: none;
    /*background-image: radial-gradient(ellipse at 0 0, cyan,rgb(0, 127, 127));*/
    transition: 0.3s;
}

.butt:hover {

    box-shadow: 5px 5px 9px black;
    transition-duration: 1s;
}

.butt::after {
    opacity: 0;
    content: "👈";
    font-size: 2em;
    color: transparent;
    text-shadow: 0 0 0px white, 0 0 2px black;
    position: absolute;
    transition-duration: 0.15s;
}

.butt:hover::after {
    transition-duration: 0.25s;
    opacity: 1;

}

.butt:active::after {
    content: "👌";
}

.butt:active {
    box-shadow: 0 0 3px black inset;
    background-image: radial-gradient(ellipse at 100% 100%, cyan, rgb(0, 127, 127));
}




/* Tooltips */
.tooltip {
    position: relative;
    /*display: inline-block;
  border-bottom: 1px dotted black;*/
    /*width: 150px;*/
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Links */

/* unvisited link */
a:link {
    color: #CCCCCC;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: hotpink;
}

/* selected link */
a:active {
    color: blue;
}

/* Tables */
table {
    border: 1px solid gray;
    /*width: 50%;*/
    border-collapse: collapse;
    text-align: center;
}

th {
    width: 10px;
    font-size: 12px;
    padding: 2px;
    margin: 2px;
    /*overflow: hidden;*/
    border-bottom: 1px solid gray;
}

td {
    padding: 2px;
    margin: 2px;
}



tr {
    background-color: #000088;
}

tr:nth-child(4n+0) {
    background-color: #000044;
}

tr:nth-child(4n+1) {
    background-color: #000044;
}


tr:hover {
    background-color: #ffffff8c;
}

/* Horizontal dividers */


/* Flaired edges, by Tomas Theunissen */
hr {
    margin-top: 0px;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(0, 0, 0, 0));
}

.headerRule {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(255, 255, 255, 1), rgba(0, 0, 0, 0));
    margin-top: 0;
    margin-bottom: 0;
}



/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    -webkit-animation-name: fadeIn;
    /* Fade in the background */
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

/* Modal Content */
.modal-content-bottom {
    position: fixed;
    bottom: 0;
    left: 15%;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideInBottom;
    -webkit-animation-duration: 0.2s;
    animation-name: slideInBottom;
    animation-duration: 0.2s
}

.modal-content-top {
    position: relative;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideInTop;
    -webkit-animation-duration: 0.2s;
    animation-name: slideInTop;
    animation-duration: 0.2s
}

.modal-content-right {
    position: relative;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideInRight;
    -webkit-animation-duration: 0.2s;
    animation-name: slideInRight;
    animation-duration: 0.2s
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}



/* Add Animation */
@-webkit-keyframes slideInBottom {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes slideInBottom {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@-webkit-keyframes slideInTop {
    from {
        bottom: 600px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes slideIntop {
    from {
        bottom: 600px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@-webkit-keyframes slideInRight {
    from {
        right: 600px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

@keyframes slideInRight {
    from {
        right: 600px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}



h4 {
    margin: 3px;
}