body {
    background-color: #a5ddb8;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

h1 {
    font-family: 'Info Story', sans-serif;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 0;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f0d59f;
    border: 2px solid #5d360e;
    color: black;
    border-radius: 5px;
}

.navbar ul li {
    float: left;
}

.navbar ul li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar ul li a:hover {
    background-color: #dc99c5;
}

.navbar ul li a.active {
    background-color: #fbbd1d;
    color: black;
}

.logo {
    text-align: center;
}


.content {
    @media (min-width:900px){
        margin-left: auto;
        margin-right: auto;
        padding-top: 25px;
    }

    @media (min-width: 1700px) {
        width: 1400px;
    }
}

table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    border-radius: 5px;
}

td, th {
    border: 1px solid #ddd;
    padding: 8px;
}

tr:nth-child(even){background-color: #a7cbb3;}
tr:hover {background-color: #ddd;}

th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #24763f;
    color: white;
}

.footer {
    text-align: right;
    font-size: x-small;
}

img.hero {
    width: 100%;
    border-radius: 15px;
}

.pagination {
    display: block;
    color: white;
    margin: 10px 0 10px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: #333333;
}

.page a.active {
    overflow: hidden;
    color: white;
    text-align: center;
    margin-left: 5px;
    padding: 10px 16px;
    text-decoration: none;
    background-color: #fbbd1d;
}

.page a {
    overflow: hidden;
    color: black;
    text-align: center;
    margin-left: 5px;
    padding: 10px 16px;
    text-decoration: none;
}

.page a:hover {
    overflow: hidden;
    color: black;
    text-align: center;
    margin-left: 5px;
    padding: 10px 16px;
    text-decoration: none;
    background-color: #dc99c5;
}

form {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

label {display: block;}

input[type=text], select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=password], select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #24763f;
    color: white;
    padding: 14px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #111111;
}

.error p {
    color: red;
    font-weight: bold;
}