@tailwind base;
@tailwind components;
@tailwind utilities;

    .container {
        float: left;
        width: 50%;
        padding-bottom: 15px;
    }
    
    .container:nth-child(uneven) {
        float: right;
    }
    
    body {
        background: #85cee47a;
        padding-bottom: 50px;
        text-align: center;
        position: relative;
        margin: unset;
        height: 100%;
    }
    
    .contentwrapper,
    .headerbar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%
    }
    
    .contentwrapper {
        z-index: 10;
    }
    
    .content {
        display: inline-block;
        padding-left: 15px;
        padding-right: 15px;
        width: 60%;
        text-align: left;
    }
    
    @media screen and (max-width:1000px) {
        .content {
            width: unset;
            padding-left: unset;
            padding-right: unset;
        }
    }
    
    .error,
    .success {
        background-color: #ff7a7a;
        border-radius: 5px;
        padding: 2px 5px 2px 5px;
        font-weight: bold;
        margin: 2px;
        display: inline-block;
    }
    
    .success {
        background-color: #37e60b;
    }
    
    .superheadline,
    .headline {
        width: 100%;
        position: relative;
        text-align: left;
        clear: both;
        margin-top: 15px;
        border-bottom: 7px solid #f6d365;
    }
    
    .superheadline {
        border-bottom: unset;
        margin-bottom: 40px;
        margin-top: 40px;
        text-align: center;
    }
    
    .superheadline h2 {
        font-weight: bold;
        border-bottom: 10px solid #f6d365;
        display: inline;
    }
    
    .headline h3 {
        font-weight: bold;
        display: inline;
    }

    
    .actionbutton {
        width: 25px;
        height: 25px;
    }
    
    .formbutton {
        width: unset;
        min-width: unset;
        padding: unset;
        background: unset;
    }
    
    select {
        padding: 2px 2.5rem 2px 2px;
        border: unset;
        max-width: 90%;
    }
    
    textarea {
        width: 100%;
        display: inline-block;
        padding: 6px 12px;
        font-size: 14px;
        border: 1px solid #ccc;
    }
    
    input[type="text"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="number"] {
        width: 100%;
        display: inline-block;
        height: 34px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
        -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }
    
    input[readonly] {
        background-color: lightgray;
    }
    
    label {
        display: block;
        font-weight: bold;
        margin-top: 10px;
    }
    
    input[type="checkbox"]+label::before {
        width: 15px;
        height: 15px;
        border-radius: 5px;
        border: 2px solid #f6d365;
        background-color: #fff;
        display: inline-block;
        content: "";
        margin-right: 5px;
    }
    
    input[type="radio"]+label {
        display: unset;
        margin-right: 10px;
    }
    
    input[type="checkbox"]:checked+label::before {
        box-shadow: inset 0px 0px 0px 3px #fff;
        background-color: #f6d365;
    }
    
    input[type="checkbox"] {
        display: none;
    }
    
    table {
        border-collapse: collapse;
    }
    
    td,
    th {
        border: 1px solid #ddd;
        padding: 8px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    
    tr:nth-child(even) {
        background-color: #dcdcdc;
    }
    tr:nth-child(odd) {
        background-color: #f2f2f2;
    }
    
    tr:hover {
        background-color: #bbbbbb;
    }
    
    th {
        padding-top: 0px;
        padding-bottom: 0px;
        background-color: #c6dadf;
        color: black;
    }
    
    input[type="submit"] {
        margin: 5px;
    }
    
    button,
    input[type="button"],
    input[type="submit"] {
        background: white;
        border-radius: 8px;
        border: 3px solid #87cee0;
        min-width: 75px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 5px;
        padding-bottom: 5px;
        font-weight: bold;
        font-size: 14px;
        margin: 5px;
        display: inline-block;
        color: black;
        cursor: pointer;
        @apply hover:bg-evblue;
    }
    
    html {
        font-family: Arial, Helvetica, sans-serif;
    }
    
    .formbutton {
        width: 100%;
    }
    
    .banner-success {
        background-color: rgba(56, 255, 56, 0.692);
        border-radius: 5px;
        padding: 5px;
        border: 2px solid black;
        display: inline-block;
    }
    
    .banner-error {
        background-color: rgba(255, 56, 56, 0.692);
    }
    
    input[type="file"] {
        display: inline-block;
    }