/* Page */

/* Mobile Device Adjustment */
@media only screen and (max-width: 720px) {
    .element-to-hide {display: none;}
    .logo {width: 10%;}
    .BodyDiv1 {width: 40%;}
}

/* Lunbin Bonk */
#LUNBIN_IMG {
    width: 100px;
    height: 100px;
    transition: transform 0.4s ease-in-out; /* Add a smooth transition */
    cursor: pointer;
    transform-origin: bottom;
}
#LUNBIN_IMG.move-up {transform: scaleY(0.9);}

/* Fonts */
@font-face {
    font-family: "GaMaamli"; /* Give your font a unique name */
    src: url('/src/fonts/GaMaamli-Regular.ttf'); /* Adjust the path and format as needed */
}
@font-face {
    font-family: "Wolfen-Regular";
    src: url('/src/fonts/Wolfen-Regular.ttf');
}

/* Text */
.PageTitle {color: brown; font-size: 50px;}
.BodyTitleSub {color: white; font-size: 17px; margin-top: -7%;}
.WIP {
    text-align: center;
    font-family: GaMaamli;
    text-shadow: -2px -2px 0 #ff9326, 2px 2px 0 #ff9326;
    font-size: 50px;
    margin-top: 5px;
    margin-bottom: -10px;
}

/* HR */
.DivHR {border: 2px solid gray; width: 100%; margin: 1px 0;}
.DivHR2 {border: 1px solid black; width: 99%; margin: 2px 0;}

/* Div */
.BodyDivOnly {background-color: gray; align-items: center; text-align: center;}
.BodyDiv1Only {background-color: #1b385d; margin-left: 15%; margin-right: 15%;}

/* ChangeLog CSS */
.HomeChangeLog {background-color: cornflowerblue; align-items: center; text-align: center; margin-top: 2%; align-content: center; display: flex; justify-content: center;  margin-bottom: 1%;}
.ChangeLog {background: #1b385d; margin-left: 0.5%;}
.ChangeLi {color: white; font-size: 21px; padding-right: 15px;}
.ChangeUl {margin-top: -7%;}

/* ShowCase CSS */
.BodyShowCase {background-color: #1b385d;}
.projects {display: flex; flex-wrap: wrap; justify-content: center;}
.ShowCaseTitle {font-size: 21px; color: white;}

/* Links CSS */
.links {background-color: #1b385d; display: flex; flex-wrap: wrap; justify-content: center;}

/* About CSS */
.EmailLabel {
    color:white;
    font-size: 20px;
}
.EmailBody {
    width: 500px;
    min-height: 80px;
    overflow: hidden;
}

/* User Profile */
.BodyDiv2_1 {
    background-color: #1b385d; 
    max-width: 450px;
    width: fit-content;
    margin-left: .5%;
    margin-top: 1%;
    margin-bottom: 1%;
    overflow: visible;
}
.centerlookup {
    display: flex;
    justify-content: center;
    text-align: center;
}
.BioTextArea {
    min-width: 400px;
}
.TagsLabel {
    color: white;
    font-size: 20px;
}
.Tags {
    flex-wrap: wrap;
}
/* Disabled Version */
input[type="checkbox"][disabled][checked] {
    filter: invert(100%) hue-rotate(10deg) brightness(1);
}
input[type="checkbox"][disabled] {
    filter: hue-rotate(18deg) brightness(100);
}
textarea[disabled] {
    background-color: white;
}
.mediaLabel {
    color:white;
    font-size: 15px;
}
.mediaInput {
    color: white;
}

/* Howling Haven CSS */
.BodyDivHaven {
    background-color: gray; 
    align-items: center; 
    text-align: center; 
    display: flex; 
    margin-top: 15px; 
    justify-content: center;
}

/* Footer (Home) */
.FooterHome {
    background-color: #474747;
    display: flex;
    justify-content: center;
}
.FooterText {color: white; font-size: 13px;}

/* Admin Page */
.keypad {display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 5px;}
.PinPadButton {background-color: white; width: 40px; height: 40px; font-size: 30px;}
.AdminLogin {color: white;}
.AdminCTRL {display: flex; justify-content: center;}
.displaydiv {display: flex; justify-content: center;}
.AdminDis {background-color: white; width: 30%; height: 30%; color:black;}

/* Overlay */
.overlay {
    display: block; /* Hidden by default */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}
  
.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}