@font-face {
    font-family: "Raleway Thin";
    src: url("../img-font/f_Thin.woff") format("woff");
    font-display: block;
}
h1{
    color:#ADD8E6;
}

.gridlogin {
    position: relative;
    margin-left: 10%;
    margin-right: 10%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
        " . "
        " . "
        "loginlogin";
    gap: 10%;
    align-items: start;
    justify-items: start;
}

.grid {
    position: relative;
    top: 10%;
    margin-left: 10%;
    margin-right: 10%;
    height: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "showcalendar showlist entries"
        "shownotes . entries"
        "downloadfile deletefile phrase"
        "loglog . phrase";
    gap: 10px;
    align-items: start;
    justify-items: start;
}

@media (max-width: 767px) {
    .grid {
        grid-template-areas:
            "entries"
            "showcalendar"
            "showlist"
            "shownotes"
            "showvideos"
            "showfiles"
            "deletefile"
            "downloadfile"
            "playvideos"
            "phrase"
            "loglog"
        ;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .showvideos select {
        width: 100%;
    }
}

.booxicologin {
    grid-area: booxicologin;
}

.booxshortlogin {
    grid-area: booxshortlogin;
}

.loginlogin {
    grid-area: loginlogin;
}

.entries {
    grid-area: entries;
}

.loglog {
    grid-area: loglog;
}

.showlist {
    grid-area: showlist;
}

.showcalendar {
    grid-area: showcalendar;
}

.showfiles {
    grid-area: showfiles;
}

.deletefile {
    grid-area: deletefile;
}

.downloadfile {
    grid-area: downloadfile;
}

.shownotes {
    grid-area: shownotes;
}

.phrase {
    grid-area: phrase;
    width: 30%;
    float: inline-end;
    bottom: 10%;
    background-color: rgb(54, 53, 53, 0.2);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background-color: rgb(54, 53, 53);
    /* background-image: url("img-font/flowers.jpg"); */
    background-position: top right;
    background-repeat: no-repeat;
    /* Adjust as needed */
    backdrop-filter: blur(20px);
    /* Adjust the blur amount as needed */
    -webkit-backdrop-filter: blur(20px);
    /* For Safari support */
    background-clip: content-box;
    /* Clip the background to the content box */
    /* Add additional styles as needed */
    color: #f0f4f7;
    margin: 0;
    padding: 0;
    font-family: "Raleway Thin";
}

h1,
h4 {
    color: #f3f0f0;
    font-weight: bolder;
    background-color: rgba(233, 223, 223, 0.1);
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 5px;
}

a {
    text-decoration: none;
    color: #d0ff00;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

fieldset {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

legend {
    font-weight: bold;
    color: #007bff;
}

textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
}

#logoutbutton {
    background-color: green;
}

select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.buttons_top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ADD8E6;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    z-index: 1;
}

.menubutton {
    padding: 10px 20px;
    margin: 0 10px;
    color: #fff;
    background-color: #D3D3D3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
}

.entry_form {
    display: none;
    color: #007bff;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.entry_form h1{
    color: #007bff;
}

.passform {
    left: 0;
    margin: 10px;
}


.showvideos select {
    margin-bottom: 10px;
}