.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url('/img/bg.jpg'); /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    z-index: -1;
}
header {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;  /* Add padding for spacing */
    display: flex;
    align-items: center;
    justify-content: center; /* Center the main content */
    box-sizing: border-box;
    position: relative;  /* Position relative for absolute positioning of logout */
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between the <h1> and other content */
}

header h1 {
    margin: 0;
    font-size: 32px;
}

.logout-button {
    text-decoration: none;
    color: white;
    background-color: #f44336;
    padding: 10px 20px;
    border-radius: 5px;
    position: absolute;
    right: 20px; /* Align to the right edge */
    top: 50%;
    transform: translateY(-50%); /* Vertically center the button */
}

.logout-button:hover {
    background-color: #d32f2f;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 250px; /* Adjust if necessary */
    box-sizing: border-box;
}
.contact-info {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    box-sizing: border-box;
}

.contact-info p {
    margin: 0.3em 0;
    font-size: 1em;
}

.navbar {
	position: fixed;
	left: 0;
	top: 0;
	width: 250px;
	height: 100%;
	background-color: rgba(120, 120, 120, 0.2);
	-webkit-backdrop-filter: blur(10px)!important; /* Support pa Safari */
	backdrop-filter: blur(25px) contrast(.8)!important;
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1)!important;
	transform: translateX(-250px);
	transition: transform 0.3s ease;
	z-index: 1000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.navbar.open {
    transform: translateX(0);
}

.navbar ul {
    list-style-type: none;
    padding: 0;
}

.navbar ul li {
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.navbar ul li a:hover {
    background-color: #fff;
    color: #666;
    transform: scale(1.05);
}

.toggle-btn {
    position: fixed;
    left: 10px;
    top: 15px;
    cursor: pointer;
    z-index: 1100;
    transition: left 0.3s ease;
}

.toggle-btn.shift {
    left: 260px;
}

.toggle-btn div {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: all 0.3s ease; 
    position: relative;
	box-shadow: 2px 0 5px rgba(0, 0, 0, 1);
}

.toggle-btn.shift div:nth-child(1) {
    transform: rotate(-45deg) translate(-0px, -7px);
}

.toggle-btn.shift div:nth-child(2) {
    transform: rotate(45deg) translate(-0px, 7px);
}

.toggle-btn.shift div:nth-child(3) {
    opacity: 0;
}

.content {
    padding: 20px;
    
}

.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.navbar .selected{
	background-color: #fff;
	color:#666;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 900;
	opacity: 0;
	transition: opacity 0.3s ease;
      }

.overlay.visible {
	opacity: 0.5;
}


/* WELCOME parts css */

.welcome_container {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
	height:100%;
    position: fixed;
    box-sizing: border-box;
	
}

.welcome_container text {
    color: #FFF;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 1); /* Adding text shadow to p */
    font-size: 3em;
    margin-top: 100px;
}
.welcome_container a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
    background-color: #007BFF;
    border-radius: 5px;
}

.welcome_container a:hover {
    background-color: #0056b3;
}
