table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}
  
td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}
  
tr:nth-child(even) {
    background-color: #dddddd;
}



#stylized input {
    display: block;
    font-size:20px;
    padding:4px 2px;
    border:solid 1px #007bc2;
    width:25vw;
    margin:2px 0 20px 10px;
}

#stylized option {
    display: block;
    font-size:11px;
    padding:4px 2px;
    border:solid 1px #aacfe4;
    width:70px;
    margin:2px 0 20px 10px;
}

.boxpadding {
    padding: 8px;
}


.header-colour {
    background: rgb(159,0,233);
    background: -moz-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background: linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9f00e9",endColorstr="#b205b4",GradientType=1);
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgb(159,0,233);
  background: -moz-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
  background: linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
  color: white;
  text-align: center;
}



input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
}
}


.submitbutton {
    background: rgb(159,0,233);
    background: -moz-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background: linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);

    background-size: 150%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

.deletebutton {
    background: rgb(233, 0, 0);
    background: -moz-linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(166, 3, 3) 100%);
    background: -webkit-linear-gradient(90deg, rgb(196, 1, 1) 0%, rgb(222, 38, 38) 100%);
    background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(206, 2, 2) 100%);

    background-size: 150%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

.backbutton {
    background: rgb(159,0,233);
    background: -moz-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background: linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);

    background-size: 150%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.backbutton_linked {
    background: rgb(0, 199, 13);
    background: -moz-linear-gradient(90deg, rgb(54, 233, 0) 0%, rgb(20, 180, 5) 100%);
    background: -webkit-linear-gradient(90deg, rgb(0, 233, 4) 0%, rgb(5, 170, 5) 100%);
    background: linear-gradient(90deg, rgb(11, 206, 7) 0%, rgb(7, 163, 17) 100%);

    background-size: 150%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.mainbuttoncolours {
    background: rgb(159,0,233);
    background: -moz-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background: linear-gradient(90deg, rgba(159,0,233,1) 0%, rgba(178,5,180,1) 100%);
    background-attachment: fixed;

    background-size: 100%;
    color: white;
}



.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #bf34db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}










/* 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 */
}
  
/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    padding-bottom: 100px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
}
  
/* The Close Button */
.close {
    color: rgb(129, 129, 129);
    float: right;
    font-size: 35px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}