/* styles.css */

/* Import Google Font Bebas Neue */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Apply Bebas Neue font */
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #3e3e3e; /* Dark gray background */
  color: #fff; /* White text */
}
/* Additional Styles */
h1, h2, h3, th, td, label {
  font-family: "Bebas Neue", sans-serif;
  color: #fff; /* White text */
}

h1 {
  text-align: center; /* Center h1 text */
  font-size: 6em;
}
h2 {
  text-align: center; /* Center h1 text */
  font-size: 2em;
}

p, label{
  line-height: 1.6;
  font-size: 1.5em;
  color: #fff; /* White text */
  font-family: "Bebas Neue", sans-serif;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 0;
  background: #3eb6c5; /* Button color */
  color: #fff; /* White text */
  text-decoration: none;
  border-radius: 5px;
  font-family: "Bebas Neue", sans-serif; /* Apply Bebas Neue font */
}

table {
    width: 100%; /* Stretch the table across the full width of the viewfinder */
    border-collapse: collapse;
    margin: 20px 0;
}
table, th, td {
    border: 1px solid #fff; /* White border for better visibility */
}
th, td {
    padding: 12px;
    text-align: left;
}

.submit-button {
            background-color: #28a745; /* Green background */
            color: #fff; /* White text */
            border: none;
            padding: 10px 20px;
            text-align: center;
            font-size: 1.6em;
            cursor: pointer;
            border-radius: 5px;
            width: 100%;
            font-family: "Bebas Neue", sans-serif; /* Apply Bebas Neue font */
            transition: background-color 0.3s ease;
        }
.submit-button:hover {
    background-color: #218838; /* Darker green on hover */
}

select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            background-color: #f8f8f8;
            font-size: 16px;
            color: #333;
            font-family: Arial, sans-serif;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        select:focus {
            border-color: #28a745; /* Green border on focus */
            box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); /* Green shadow on focus */
            outline: none;
        }
        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            background-color: #f8f8f8;
            font-size: 16px;
            color: #333;
            font-family: Arial, sans-serif;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .form-control:focus {
            border-color: #28a745; /* Green border on focus */
            box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); /* Green shadow on focus */
            outline: none;
        }
        
        
.form-check {
    display: flex;
    align-items: center;
}
.form-check input[type="checkbox"] {
    display: none;
}
.form-check input[type="checkbox"] + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    font-family: Arial, sans-serif;
}
.form-check input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.form-check input[type="checkbox"]:checked + label::before {
    border-color: #28a745; /* Green border when checked */
    background-color: #28a745; /* Green background when checked */
}
.form-check input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 9px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

