.bg-primary {
  background-color: #CC0000;
}
.text-primary {
  color: #CC0000;
}

* {
    box-sizing: border-box;
}
.custom-table {
    width: 100%;
    background-color: white;
    border-collapse: collapse;
}

.custom-table th,
.custom-table td {
    padding: 12px;
    border: 1px solid #e2e8f0; /* Light gray border */
    text-align: left;
}

.custom-table th {
    background-color: #CC0000; /* Dark gray */
    color: white;
    font-size: 1.12rem; /* Larger font size */
    font-weight: 500;
    text-align:center;
}

.custom-table td {
    font-size: 0.875rem; /* Smaller font size */
    color: #4a5568; /* Darker gray text */
}