@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;700&display=swap');
video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1; /* Place video behind content */
}

body {
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 98vh;
  max-height: 100vh;
  background-color: #f5f5f5; /* Light gray background */
}

.container {
  background-color: #fff; /* White background for content */
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Logo styling */
.logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 300px; /* Adjust as needed */
}

/* Form styling */
form {
  text-align: center;
}

.input-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="email"],
input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 250px; /* Adjust as needed */
}

button[type="submit"] {
  font-family: 'Rajdhani', sans-serif;
  background-color: #007bff; /* Blue background */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.button{
  font-family: 'Rajdhani', sans-serif;
  background-color: #007bff; /* Blue background */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 15px;
 }

#pagesContainer {
  display: flex;
  width: 100%;
  height: 98vh;
}

#pages {
  display: flex;
  width: 100%;
  height: 98vh;
}

#accountList {
  flex: 0.25; /* 25% width */
  background-color: #233040;
  padding: 10px;
  overflow-y: auto;
  width: 25%;
}

#reportDetail {
  flex: 0.75; /* 75% width */
  padding: 20px;
  width: 75%;
}

#accountList ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#accountList li {
  cursor: pointer;
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  background-color: white;
}

#accountList li:hover {
  background-color: #eee;
}

#reportDetail h1, h2 {
  margin: 10px 0;
}

#chartContainer {
  height: 50%;
}

#reportSections {
  display: flex;
  justify-content: space-between;
}

#laborSpent{
  flex: 1;
}
#expensesSpent {
  flex: 1;
  border-left: 1px solid #ddd;
  padding-left: 20px;
}
#laborSpent ul, #expensesSpent ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#laborSpent li, #expensesSpent li {
  padding: 5px 0;
}
  
#loadingContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity for blur intensity */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Place above other elements */
}

#loadingText {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.hidden {
  display: none;
}

.visible {
  display: flex;
}

#loadingBox {
  background-color: #fff; /* Change background color as needed */
  border-radius: 10px; /* Adjust curvature here */
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loadingText {
  color: #333; /* Change text color as needed */
  font-size: 1.5rem;
  font-weight: bold;
}

#header {
  display: flex;
  justify-content: center; /* Align button to left, text to right */
  align-items: center; /* Vertically center elements */
}

#logout{
  background-color: #74b5fe; /* Set light blue background */
  border-radius: 5px; /* Add rounded corners */
  border: none; /* Remove default button border */
  padding: 10px 15px; /* Adjust padding as needed */
  color: #fff; /* Set text color to white */
  cursor: pointer; /* Indicate button functionality */
  right: 10px;
  top: 10px;
  position: absolute;
}

#header h1 {
  text-align: center; /* Center the text */
  text-decoration: underline;
}

#reportSelectionContaier{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: baseline;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 1em;
}

#plannedActivities, #previousActivities {
  margin-bottom: 0px;
}

.clickable-text {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

#create{
  margin-bottom: 15px;
}

#login{
  font-size: x-large;
  margin-top: 15px;
}
