
body {
      font-family: "Segoe UI", Arial, sans-serif;
	  background: #f5f6fa;
      /*background-image: url('banner.jpg'); */
      margin: 0;
      padding: 0;
      text-align: center;
	  background-size: cover;
	  position: relative; /* Needed for positioning the pseudo-element */
	}

	body::before {
	  content: '';
	  position: absolute;
	  top: -5%;
	  left: 0;
	  width: 100%;
	  height: 105%;
	  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
	  z-index: -1; /* Places the overlay behind the content */
	}

    
	
	.div1 {
	width: 30%;
        margin-right: 10px;
    }
	
	.flex-container {
        display: flex;
		width: 100%;
        gap: 10px;
        justify-content: center; /* Centers the divs horizontally */
        align-items: center;   /* Centers the divs vertically */
    }
	
    h1 {
      color: white;
      padding: 15px 0;
	  font-size: 3em;
      margin-bottom: 20px;
    }
    .options {
      display: flex;
      justify-content: center;
      gap: 2%;
      flex-wrap: wrap;
      margin-bottom: 5%;
    }
    .option {
      border: 1px solid transparent;
      border-radius: 5px;
      overflow: hidden;
      width: 20%;
      background: #87CEEB;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: transform 0.3s, border 0.3s;
      cursor: pointer;
    }
    .option img {
      width: 100%;
      height: 85%;
      object-fit: fill;
    }
    .option h3 {
      margin: 0;
      padding: 10px;
    }
    .option:hover {
      transform: scale(1.05);
      border: 10px solid #f0070f;
    }
    .selected {
      border: 10px solid #f0070f;
    }
    form {
      
      width: 90%;
      max-width: 90%;
      margin: 0 auto;
      padding: 20px;
      border-radius: 10px;
    }
    input[type="text"] {
		width: 100%;
		color: #FFFFFF;
		padding: 10px;
		border: 1px solid #FFFFFF;
		border-radius: 4px;
		box-sizing: border-box;
		background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent input fields */
	}

	input[type="email"] {
		width: 50%;
		color: #FFFFFF;
		padding: 10px;
		border: 1px solid #FFFFFF;
		border-radius: 4px;
		box-sizing: border-box;
		background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent input fields */
	}

	textarea {
		width: 50%;
		color: #FFFFFF;
		padding: 10px;
		border: 1px solid #FFFFFF;
		border-radius: 4px;
		box-sizing: border-box;
		background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent input fields */
	}

	textarea {
		resize: vertical; /* Allow vertical resizing */
	}

		input::placeholder {
	  color: #E5E4E2; /* Sets the placeholder text color to red */
	  font-size: 1.5em;
	  opacity: 1; /* Ensures full opacity, especially for Firefox */
	}

	textarea::placeholder {
	  color: #E5E4E2; /* Sets the placeholder text color to red */
	  font-size: 1.5em;
	  opacity: 1; /* Ensures full opacity, especially for Firefox */
	}
    button {
      background: #007BFF;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 2em;
      border-radius: 5px;
      cursor: pointer;
    }
    button:hover {
      background: #0056b3;
    }
	
	p {
		font-family: "Times New Roman", Georgia, serif;
	}
	
	label {
		color: white;
		font-size: 1.5em;
		font-family: "Times New Roman", Georgia, serif;
		font-weight: bolder;
	}

.container {
    max-width: 100%;
    margin: 50px auto;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logout-btn {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.logout-btn:hover {
    background: #c0392b;
}

h1 {
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    background-color: #4a90e2;
    color: white;
    padding: 10px;
    text-align: left;
}

td {
    padding: 8px;
    border: 1px solid #ddd;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e1f0ff;
}

.no-data {
    text-align: center;
    color: #888;
    font-style: italic;
}

/* Login Page */
.login-container {
    max-width: 400px;
    margin: 100px auto;
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
}

.login-container label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-top: 10px;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.login-container button {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: #4a90e2;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.login-container button:hover {
    background: #357ab7;
}

.error {
    background: #fbeaea;
    color: #c0392b;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}
