/* Existing Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}
th {
    background-color: #f2f2f2;
}
td {
    cursor: pointer;
}
.editable:hover {
    background-color: #f5f5f5;
}
.green-background {
    background-color: #dfffdf; /* Light green background */
}
/* New CSS classes for Salary Cap and Annual Cap Hits rows */
.yellow-background {
    background-color: #ffff99; /* Yellow background for Salary Cap */
}
.light-red-background {
    background-color: #ffcccc; /* Light red background for Annual Cap Hits */
}
.negative-value {
    background-color: red !important; /* Red background for negative values */
    color: white !important; /* White text for better readability */
}




  .center-text {
    text-align: center;
    /* You can change the font size here */
    font-size: 16px;
  }
  .center-text p {
    margin: 0; /* Removes default margin from <p> */
    padding: 0.2em 0; /* Adds padding to the top and bottom of each paragraph */
  }
  .center-text p:first-child {
    padding-top: 0.0em; /* Adds additional space above the first paragraph */
  }
  .center-text p:last-child {
    padding-bottom: 2em; /* Adds additional space below the last paragraph */
  }
  
  
  
  
  

/* Additional CSS for Centering the Header */
h2 {
    text-align: center; /* Centers the text */
    margin-top: 20px; /* Add some space at the top */
    margin-bottom: 20px; /* Add some space below the header */
}


