﻿/* THIS IS THE CSS FOR THE PUBLIC AREA VIEW PAGES */

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

/* BODY */
body {
    padding-bottom: 20px;
    margin-bottom: 60px;
    background-color: #ffffe6;
    font-family: Arial, Helvetica, sans-serif, Verdana;
}

/* CONTINUING THE LIST DOWN IS FOR THE INDEX PAGE */
.entry {
    text-align: center;
    text-decoration: solid;
    padding-bottom: 20px;
}

.academic {
    border-radius: 10px;
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 20px;
    padding-left: 25px;
    margin: 0px auto;
    margin-top: 10px;
}

.creative {
    border-radius: 10px;
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 20px;
    padding-left: 25px;
    margin: 0px auto;
    margin-top: 10px;
}

.sport {
    border-radius: 10px;
    padding-top: 20px;
    padding-right: 25px;
    padding-bottom: 20px;
    padding-left: 25px;
    margin: 0px auto;
    margin-top: 10px;
}

/* CAROUSEL */
.carousel {
    padding-bottom: 2px;
}

.bg-base {
    background-color: #ffffe6;
}

/* FORM */
.bg-form {
    background-color: #ffffed;
}

.big-checkbox input[type="checkbox"] {
    width: 20px; /* ADJUST THE WIDTH AS NEEDED */
    height: 20px; /* ADJUST THE HEIGHT AS NEEDED */
    transform: scale(1.5); /* SCALE THE CHECKBOX */
    -webkit-transform: scale(1.5); /* FOR SAFARI */
}

.large-input {
    font-size: 1.25rem; /* INCREASE FONT SIZE */
    padding: 8px; /* INCREASE PADDING */
}

.suggestions-container {
    padding-left: 20px; /* ADJUST THE VALUE AS NEEDED */
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 100px;
    overflow-y: auto;
    position: absolute; /* ENSURE THE DROPDOWN APPEARS CORRECTLY */
    z-index: 1000; /* ENSURE THE DROPDOWN APPEARS  ABOVE OTHER ELEMENTS */
    width: calc(100% - 40px); /* ADJUST WIDTH TO MATCH INPUT FIELD */
}

.suggestions-container div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; /* BACKGROUND COLOUR FOR SUGGESTED ITEMS */
    color: #000; /* TEXT CLOUR FOR SUGGESTED ITEMS */
}

.suggestions-container div:hover {
    background-color: #f0f0f0;
}

/* FOOTER */
.footer {
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
}