/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
:root {
    --caption-size: 24px;
    --head-size: 20px;
    --body-size: 16px;
    --h1-size: 28px;
    --h1-align: left;
    --h2-size: 20px;
    --h2-align: left;
    --top-nav-font-size: 18px;
    --table-min-width: 800px;
    --nav-login-padding: 10px;
    --text-width: 800px;
    --text-height: 300px;
    --text-size: 14px;
    --msg-size: 745px;
    --times-size: 200px;
    --margin: 25%;
}
@media screen and (max-width: 480px) {
    :root {
        --caption-size: 14px;
        --head-size: 10px;
        --body-size: 8px;
        --h1-size: 16px;
        --h1-align: center;
        --h2-size: 12px;
        --h2-align: left;
        --top-nav-font-size: 12px;
        --table-min-width: 350px;
        --nav-login-padding: 1px;
        --text-width: 400px;
        --text-height: 200px;
        --text-size: 10px;
        --msg-size: 340px;
        --times-size: 200px;
        --margin: 10%;
    }
}
.red-text {
    color: red;
}
.bold-red-text {
    color: red;
    font-weight: bold;
}
.bold-big-red-text {
    color: red;
    font-weight: bold;
    font-size: 2em;
}
.bold-text {
    font-weight: bold;
}
.centered {
    text-align: center;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.hide-invite {
    visibility: hidden;
}
/* Tooltip container */
.in-circle {
    display: block;
    background: #A9A9A9;
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 8px;
}

.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

#block_container {
    display: flex;
    justify-content: left;
}
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    width: 30%;
    padding-top: var(--nav-login-padding);
    color: #f2f2f2;
}

.button {
    font: 12px Arial;
    text-decoration: none;
    background-color: #EEEEEE;
    color: #333333;
    border-radius: 6px;
    padding: 2px 6px 2px 6px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    border-left: 1px solid #333333;
}

body {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    font-weight: 100;
    font-size: 12px;
    color: #050505;
}

.container {
    max-width: 1000px;
    width: 100%;
}
h1 {
    font-size: var(--h1-size);
    text-align: var(--h1-align);
}
h2{
    font-size: var(--h2-size);
    text-align: var(--h2-align);
}
body { background-color: ghostwhite; color: darkblue; }
.callout{
    color: gray;
    font-style: italic;
    margin-left: 20px;
}
table {
    border: 1px solid;
    min-width: var(--table-min-width);
}
.edit-table {
    border: 0px solid;
    width: 100%;
    max-width: 200px;
}
.edit-tr {
    border: 0px;
    width: 100%;
    max-width: 200px;
}
.edit-td-first {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    min-width: 60px;
    text-align: left;
}
.edit-td-second {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    min-width: 60px;
    text-align: left;
}
.subject-td {
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 0px;
    width: 200px;
    text-align: left;
}
.tr-head {
    border: 1px solid;
    background-color: lightblue;
    font-weight: bold;
    font-size: var(--head-size);
}
th {
    padding: 3px;
    text-align: center;
    border-bottom: 1px solid black;
}
.tr-body {
    border: 1px solid;
}
td {
    text-align: center;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
}
textarea {
  width: var(--text-width);
  height: var(--text-height);
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: var(--text-size);
}

msg-textarea {
    width: var(--text-width);
    height: var(--text-height);
}

#msg-textarea {
    -moz-appearance: textfield-multiline;
    -webkit-appearance: textarea;
    border: 1px solid gray;
    font: medium -moz-fixed;
    font: -webkit-small-control;
    overflow: auto;
    padding: 2px;
    resize: both;
    width: var(--text-width);
    height: var(--text-height);
}

.msg-box {
    width: var(--msg-size);
    display: flex;
}
.times-box {
    width: var(--times-size);
    display: flex;
}
.about_margins {
    margin-left: var(--margin);
    margin-right: var(--margin);
}
.topnav {
    background-color: rgba(13, 92, 241, 0.62);
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 8px 10px;
    text-decoration: none;
    font-size: var(--top-nav-font-size);
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: #04AA6D;
    color: white;
}
