/* General Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #E8F8FF; /* Light baby blue */
  margin: 0;
  padding: 20px; /* Add spacing around the entire page */
  color: #333; /* Darker text for readability */
}

/* Container Styling */
.container {
  width: 90%;
  margin: 20px auto; /* Center the container with top/bottom spacing */
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Add padding inside the container for breathing room */
}

/* Title Styling */
header h1 {
  font-size: 5rem; /* Larger font size for emphasis */
  color: #009999; /* Turquoise */
  margin: 0 0 20px 0; /* Add space below the title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px; /* Slight spacing between letters */
  margin-bottom: 30px;
}

 h2 {
  font-size: 2.0rem; /* Larger font size for emphasis */
  color: #009999; /* Turquoise */
  margin: 0 0 1% 0; /* Add space below the title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
  font-weight: bold;
  text-align:left;
  letter-spacing: 1px; /* Slight spacing between letters */
}

 h3 {
  font-size: 2.0rem; /* Larger font size for emphasis */
  color: #009999; /* Turquoise */
  margin: 10% 0 1% 0; /* Add space below the title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
  font-weight: bold;
  text-align:left;
  letter-spacing: 1px; /* Slight spacing between letters */
}

/* Search Bar Container */
.search-bar {
  display: flex;
  justify-content: right; /* Center the search bar */
  /* margin-bottom: 10px; Add spacing below the search bar */
}

/* Search Bar Input */
.search-bar input {
  width: 100%;
  max-width: 200px; /* Set a maximum width for the input */
  padding: 12px 20px; /* Add more padding for better usability */
  font-size: 1rem;
  border: 1px solid #00B3B3; /* Turquoise border */
  border-radius: 10px; /* Rounded edges for a modern look */
  outline: none;
  transition: all 0.3s ease-in-out; /* Smooth focus effect */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Search Bar Input Focus */
.search-bar input:focus {
  border-color: #009999; /* Darker turquoise on focus */
  box-shadow: 0 4px 8px rgba(0, 153, 153, 0.3); /* Glow effect on focus */
}

/* Placeholder Text Styling */
.search-bar input::placeholder {
  color: #888; /* Light gray placeholder text */
  font-style: italic;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th,
table td {
  text-align: left;
  padding: 12px 15px;
  border: 1px solid #CCCCCC; /* Light gray borders */
}

table th {
  background-color: #2e8989; /* Turquoise header */
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1rem;
}

table td {
  background-color: #FFFFFF;
  color: #333333;
  font-size: 0.95rem;
}

table tr:hover td {
  background-color: #E0F7F7; /* Light turquoise on hover */
  cursor: pointer;
}

/* Buttons Container */
.button-container {
  display: flex;
  justify-content: center; /* Center the buttons horizontally */
  gap: 20px; /* Add spacing between buttons */
  margin-top: 30px; /* Add space between buttons and the table */
}

/* Button Styling */
button {
  padding: 10px 20px;
  font-size: 1.2rem;
  color: #FFFFFF;
  background-color: #00B3B3; /* Turquoise */
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Button shadow for depth */
  cursor: pointer;
  transition: 0.3s ease-in-out;
  margin-top: 20px;
  margin-bottom: 60px;
}

button:hover {
  background-color: #009999; /* Darker turquoise */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

button:active {
  transform: scale(0.98); /* Slight click effect */
}

/* Link Styling */
a {
  color: #006666; /* Turquoise link */
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #004D4D; /* Darker turquoise on hover */
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 10px;
  margin-top: 30px;
  background-color: #009999;
  color: #FFFFFF;
  font-size: 0.9rem;
  border-radius: 0 0 10px 10px;
}


/* Styling the Details Link as a Button */
.details-button {
 color: rgb(118, 156, 184);
}

.details-button:hover {
  
  transform: translateY(-2px); /* Adds a hover lift effect */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Slightly deeper shadow on hover */
}

.details-button:active {
  transform: translateY(0); /* Reset the lift effect on click */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Original shadow on click */
}

.description {
    background-color: #e8f4fa; /* Soft blue background to match the theme */
    border: 1px solid #d1e3ed; /* Subtle border for definition */
    border-radius: 10px; /* Rounded corners to match the theme */
    padding: 20px; /* Spacing around the content */
    max-width: 900px; /* Adjusted width for alignment */
    margin: 20px auto; /* Center alignment */
    font-family: 'Arial', sans-serif; /* Simple and clean font */
    color: #003c58; /* Dark teal text for readability */
    box-shadow: 0 2px 5px rgba(0, 60, 88, 0.15); /* Light shadow for depth */
    text-align: center; /* Center-align content */
}

.description h3 {
    font-size: 1.6rem; /* Adjusted font size for heading */
    color: #005f85; /* Blue-teal color for the heading */
    margin-bottom: 15px; /* Space below the heading */
    font-weight: bold; /* Bold for emphasis */
}

.description p {
    font-size: 1rem; /* Standard text size */
    line-height: 1.8; /* Better readability */
    margin: 0 auto; /* Center the paragraph */
    text-align: justify; /* Justify text for a polished appearance */
}
.description {
 
  background: linear-gradient(145deg, #e0f7ff, #d1e7f8); /* Subtle gradient for modern appeal */
  border-radius: 12px; /* Rounded corners */
  padding: 30px; /* Spacious padding for a clean layout */
  max-width: 850px; /* Align width to match the theme */
  margin: 30px auto; /* Centered on the page */
  font-family: 'Poppins', sans-serif; /* Modern, clean font */
  color: #003d5e; /* Dark teal text for contrast */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Larger shadow for depth */
  text-align: left; /* Left-aligned text for a professional look */
}

.description h3 {
  font-size: 2rem; /* Larger, bold heading for emphasis */
  color: #0073a8; /* Bright teal for a fresh, modern style */
  margin-bottom: 20px; /* Space between heading and text */
  text-align: center; /* Centered heading */
  text-transform: uppercase; /* Modern uppercase styling */
  letter-spacing: 1px; /* Slight spacing for a sleek effect */
  font-weight: 600; /* Slightly bolder heading */
}

.description p {
  font-size: 1.1rem; /* Slightly larger paragraph text */
  line-height: 1.8; /* Improved readability */
  margin: 0 auto; /* Centered container */
  color: #005375; /* Subtle dark blue text for contrast */
  text-align: justify; /* Justify text for polished appearance */
}

.description p span {
  color: #009999; /* Highlight important words in teal */
  font-weight: bold; /* Emphasize keywords */
}

@media (max-width: 768px) {
  .description {
      padding: 20px; /* Adjust padding for smaller screens */
      max-width: 90%; /* Reduce width on mobile */
  }

  .description h3 {
      font-size: 1.6rem; /* Adjust heading size for mobile */
  }

  .description p {
      font-size: 1rem; /* Adjust paragraph size for readability */
  }
}
