/* General Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 0.1vw 0;
    box-shadow: 0 0 0.1vw rgba(30, 4, 230, 0.379);
    color: rgb(255, 255, 255);
}

table, th, td {
    border: 1px solid #ddd;
    padding: 4px;
}

th {
    background-color: #f2f2f2;
    text-align: left;
}

/* Header Styling */
table thead th {
    background-color: #4CAF50; /* Green header background */
    color: white; /* White text */
    padding: 1vw;
    text-align: center;
    font-weight: bold;
    border: 0.2vw solid #ddd;
}

/* Body Row Styling */
table tbody tr {
    border: 0.2vw solid #ddd;
}

/* Alternating Row Colors */
table tbody tr:nth-child(odd) {
    background-color: #f1c40f8a; /* Light gray for odd rows */
}

table tbody tr:nth-child(even) {
    background-color: #6dca0257; /* Slightly darker gray for even rows */
}

/* Cell Styling */
table tbody td {
    color: navy;
    padding: 1vw;
    text-align: left;
    border: 0.2vw solid #ddd;
}

/* Right Align Numeric Cells */
.right-align {
    text-align: right;
}

/* Hover Effect on Rows */
table tbody tr:hover {
    background-color: #7a82fcc6; /* Yellow on hover */
}

/* Footer Styling */
table tfoot tr {
    background-color: #40bb03; /* Dark background for footer */
    color: rgb(9, 12, 240); /* White text */
    font-weight: bold;
    text-align: right;
}

table tfoot td {
    padding: 1vw;
    border: 0.2vw solid #ddd;
}

/* Button Styling */
table tbody button {
    background-color: #e74c3c; /* Red button background */
    color: white; /* White text */
    padding: 1vw 1vw;
    border: none;
    border-radius: 1vw;
    cursor: pointer;
    font-size: 10px;
}

table tbody button:hover {
    background-color: #c0392b; /* Darker red on hover */
}

.wid00 {
	width: 0%;
	font-size: 0%;
}

.wid05 {
	width: 5%;
	font-size: 95%
}

.wid10 {
	width: 10%;
	font-size: 95%
}

.wid20 {
	width: 20%;
	font-size: 95%
}

.wid25 {
	width: 25%;
	font-size: 95%
}

.wid30 {
	width: 30%;
	font-size: 95%
}

.wid40 {
	width: 40%;
	font-size: 95%
}

.wid50 {
	width: 50%;
	font-size: 95%
}

.wid60 {
	width: 60%;
	font-size: 95%
}

.wid70 {
	width: 70%;
	font-size: 95%
}

.wid80 {
	width: 80%;
	font-size: 95%
}

.wid90 {
	width: 90%;
	font-size: 95%
}

.wid95 {
	width: 95%;
	font-size: 95%
}


.numInput {
    width: 50%;
    text-align: right;
}


.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

.active, .collapsible:hover {
    background-color: #ccc;
}

.content {
    padding: 0 1px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}
