body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}
.navbar {
    background-color: #6AA1B3;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.navbar-left {
    display: flex;
    align-items: center;
}
.navbar-left img {
    height: 50px;
    margin-right: 10px;
    border-radius: 8px; /* Smooth edges */
}
.navbar a {
    color: white;
    text-decoration: none;
    margin-left: 45px; /* Increased spacing between links */
    font-size: large;
}
.container {
    width: 100%;
    margin: 10px auto;
    padding: 10px;
    background: white;
    border-radius: 8px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

.evaluation-container {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    max-width: 95%;
    margin: 20px auto;
    text-align: center;
}

.title {
    color: #6AA1B3;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.completion-status {
    font-size: 1.6em;
    color: #9F504A;
    margin-bottom: 15px;
}

.completion-status span {
    font-weight: bold;
}

.greeting {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.description {
    font-size: 1.4em;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: justify;
}

/* Button Styles */
.btn {
    font-size: 1.4em;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: #6AA1B3;
    color: white;
}
.btn-primary:hover {
    background-color: #324769;
}

.btn-primary:disabled {
    background-color: #6AA1B3;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary {
    background-color: #A1A4A4;
    color: white;
}
.btn-secondary:hover {
    background-color: #616363;
}

.btn-secondary:disabled {
    background-color: #A1A4A4;
    cursor: not-allowed;
    opacity: 0.6;
}


.btn-danger {
    background-color: #9F504A;
    color: white;
}
.btn-danger:hover {
    background-color: #721407;
}

/* Form Styles */
.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    max-width: 80%;
    margin: 20px auto;
    text-align: center;
}

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

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

input[type="text"],
input[type="email"],
input[type="password"],
textarea, 
select {
    width: 50%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2em;
}

input:focus, textarea:focus, select:focus {
    border-color: #6AA1B3;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    font-size: 1.2em;
}

textarea {
    resize: vertical;
    min-height: 100px;
    font-size: 1.2em;
}

.form-container .btn {
    width: 90%;
    margin-top: 10px;
    background-color: #6AA1B3;
    color: white;
}

.image-container {
    text-align: center;
    width: fit-content;
    max-width: 100%; /* Prevents it from exceeding the parent */
    margin: auto; /* Centers the div */
}

.image-container img {
    max-width: 100%; /* Ensures image does not exceed container width */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra spacing below image */
}

.wide-input {
    width: 100%; /* Full width of its container */
    max-width: 80%; /* Limits excessive width */
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    align-self: left;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin-top: 20px;
    align-items: center;
    text-align: center;
    margin: 10px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.table th, .table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.table th {
    background-color: #6AA1B3;
    color: white;
    font-weight: bold;
}

.table tr:hover {
    background-color: #f1f1f1;
}

.table-striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.table-bordered {
    border: 1px solid #ddd;
}

.table-bordered th, .table-bordered td {
    border: 1px solid #ddd;
}

.container-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    margin: 0px auto;
    gap: 0px;
}

/* Individual containers */
.container-left,
.container-right {
    width: 50%;
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container-center {
    width: 100%;
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 0px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

/* Ensuring both containers have the same height */
.container-wrapper > div {
    display: flex;
    flex-direction: column;
}

.radio-group {
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: space-between; /* Spread options evenly */
    flex-wrap: wrap; /* Ensures responsiveness if many options */
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px; /* Adjust spacing between label and radio button */
}

.radio-vertical label {
    display: block; /* Stack each label vertically */
    margin-bottom: 10px; /* Space between options */
    font-size: 16px;
    text-align: left;
    margin-left: 40px;
}

/* Hide the default radio input */
.radio-input {
    display: none;
}

/* Style the label to look like a button */
.radio-label {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #324769;
    border-radius: 5px;
    background-color: white;
    color: #324769;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* When the radio button is selected, change its style */
.radio-input:checked + .radio-label {
    background-color: #6AA1B3;
    color: white;
    border-color: #324769;
}

/* When the radio button is selected, change its style */
.radio-input:hover + .radio-label {
    background-color: #6AA1B3;
    color: white;
    border-color: #324769;
}

.square-label {
    display: flex;
    align-items: center;
    gap: 10px; /* space between square and text */
}

.color-square {
    width: 10px;
    height: 10px;
    background-color: black; /* red-ish */
    border: 1px solid black;
    border-radius: 4px; /* optional: slightly rounded corners */
}

.red {
    background-color: #d01905;
}

.blue {
    background-color: blue;
}

.olive {
    background-color: olive;
}

.magenta {
    background-color: magenta;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help; /* Optional: indicates there's more info */
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 160px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px;
  border-radius: 6px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  bottom: 125%; /* above the text */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tabs {
  margin-top: 20px;
}

/* Hide radio inputs */
.tabs input[type="radio"] {
  display: none;
}

/* Style the labels as tabs */
.tabs label {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 4px;
  background-color: #7ca2ae;
  color: white;
  border-color: #324769;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
}

.tabs input[type="radio"]:checked + label {
  background-color: #12647f;
  color: white;
  border-color: #324769;
  font-weight: bold;
}

/* Tab content defaults to hidden */
.tab-content {
  display: none;
  border: 1px solid #ccc;
  padding: 15px;
  border-top: none;
  background: #f9f9f9;
}

/* Show content when corresponding tab is checked */
#tab1:checked ~ #content1,
#tab2:checked ~ #content2 {
  display: block;
}

.alert-box {
  background-color: #f44336;  /* red */
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.styled-list {
  list-style-type: decimal;      /* Types: decimal, upper-roman, lower-alpha, etc. */
  padding-left: 40px;            /* Indent the list */
  font-family: "Segoe UI", sans-serif;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

.styled-list li {
  margin-bottom: 8px;            /* Space between list items */
  padding-left: 5px;
}




