/* yes I know part of the css was made in chatgpt i'm awful mainly at css lol */

body {
    background-color: rgb(255, 255, 255);
    font-family: "Inter";
}
  
h1 {
    color: rgb(0, 0, 0);
    text-align: center;
}
  
p {
    font-family: "Inter";
    font-size: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    box-sizing: border-box;
}

th {
    background-color: #f9f9f9;
    cursor: pointer;
}

tbody tr:nth-child(odd) {
    background-color: #f8f8f8; /* Optional for alternating row colors */
}

.header {
    width: 100%;
    background-color: #d3ebf8; /* Pastel blue */
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    gap: 15px; /* Add spacing between elements */
    border-radius: 20px; /* Rounded corners */
    border: 2px solid #a6d4e6; /* Slightly darker border for contrast */
}

.header input, .header select {
    padding: 10px 15px;
    border: 2px solid #a6d4e6; /* Match border color with header */
    border-radius: 10px; /* Rounded input fields */
    font-size: 16px;
    color: #555; /* Darker text for readability */
    background-color: #ffffff; /* White input background */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    outline: none; /* Remove focus outline */
    transition: all 0.3s ease; /* Smooth hover effect */
}

.header input:focus, .header select:focus {
    border-color: #75c1de; /* Highlight border on focus */
    box-shadow: 0 0 5px rgba(117, 193, 222, 0.5); /* Glow effect */
}

.header select {
    font-weight: bold;
    max-width: 200px;
    cursor: pointer;
}

.header label {
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Neutral dark color */
}

.button-9 {
  appearance: button;
  backface-visibility: hidden;
  background-color: #405cf5;
  border-radius: 6px;
  border-width: 0;
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-family: -apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;
  font-size: 100%;
  height: 44px;
  line-height: 1.15;
  margin: 12px 0 0;
  outline: none;
  overflow: hidden;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-transform: none;
  transform: translateZ(0);
  transition: all .2s,box-shadow .08s ease-in;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.button-9:disabled {
  cursor: default;
}

.button-9:focus {
  box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}

.header2 {
    display: flex;
    justify-content: space-between; /* Pushes name + tagline to the left and button to the right */
    align-items: center; /* Aligns items vertically */
    padding: 20px;
    background-color: #f4f4f4; /* Soft background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
}

.header2 .name-container {
    display: flex;
    flex-direction: column; /* Stack name and tagline vertically */
}

.header2 .name {
    font-size: 24px;
    font-weight: bold;
    color: #333; /* Darker text for contrast */
}

.header2 .tagline {
    font-size: 14px;
    color: #666; /* Softer color for the tagline */
    margin-top: 1px; /* Small spacing between name and tagline */
}

.header2 .button-container {
    display: flex;
    align-items: center;
}

