/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  /* --- New Style for the Main Heading Div --- */
  .main-heading-section {
    width: 100%; /* Make it span the full width */
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #e0f2f7; /* Light blue background */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    box-sizing: border-box; /* Include padding in the width */
  }
  
  .main-heading-section h1 {
    color: #0056b3; /* Darker blue for heading */
    margin-bottom: 10px;
    font-size: 2.5em; /* Larger font size */
  }
  
  .main-heading-section p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.5;
  }
  /* --- End New Style --- */
  
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 150px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .card-title {
    background-color: #007BFF;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  
  .card-row {
    padding: 10px 10px;
    border-bottom: 1px solid #eee;
  }
  
  .card-row h3 {
    margin: 0 0 10px;
    font-size: 18px;
  }
  
  .row-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .left-info {
    font-weight: bold;
    color: #333;
    font-size: 25px;
  }
  
  .right-info {
    flex: 1;
    text-align: right;
    color: #555;
  }
  
  .horizontal-bar {
    height: 4px;
    background-color: #007BFF;
    /*margin: 0 20px;*/
    border-radius: 2px;
  }
  
  .number-input {
    width: 100%;
    padding: 5px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: right;
  }
  
  #container {
    display: contents;
  }
  
  .evaluation-section {
    width: 100%; /* Make it span the full width */
    text-align: center;
    margin-top: 30px; /* Space above the button */
    padding-top: 20px;
    border-top: 1px solid #ddd; /* A subtle line above it */
  }
  
  .evaluation-section button {
    background-color: #28a745; /* Green color for evaluation */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.5em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  .evaluation-section button:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-2px); /* Slight lift effect */
  }
  
  .evaluation-section button:active {
    background-color: #1e7e34;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  /* Basic Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  
  .close-button {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-button:hover,
  .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }


