.background {
    background: url("/images/bgcornfield.jpeg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: darken;
}

.ck-editor__editable {
    min-height: 150px;
}

p a {
    color: #1519ff;
    text-decoration: underline;
}

input:placeholder-shown {
    font-style: italic;
    font-size: medium;
}

.datapointreportrow:nth-child(even) {
    background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.loading {
    z-index: 20;
    position: fixed;
    top: 0;
    left:-5px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.loading-content {
    position: fixed;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


table tr:nth-child(odd) td{
    background-color: rgb(255, 255, 255);
}
table tr:nth-child(even) td{
    background-color: rgb(229, 231, 235);
}
table tr:nth-child(even) td input{
    background-color: rgb(229, 231, 235);
}

table tr.inactive td{
    /*background-color: rgb(229, 231, 235);*/
    background-color: rgba(255, 0, 0, 0.3);
}
