Reset default margins and padding

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Body background and font styles */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    padding: 60px;
}



.constant-table {
    width: 100%;
}
.constant-table tr th{
    border: 1px solid #9e9e9e;
    /* background-color: #000000; */
}
.constant-table thead{
    background-color: #00000041;
}
#line-plot {
    width: 100%;
    text-align: center;
    justify-content: center;
}
#cool-table tr{
    /* width: 100%; */
    margin:20px;
    border-bottom: 1px solid #bdbdbd;

}
#cool-table th {
    background-color: #e67c7cb9;
}
/* Table styling */
#cool-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    /* border: 1px solid #000000; */
    overflow: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    text-align: center;
} 

th,
td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    justify-content: center;
    width: 80px;
}





/* Input field styling */

.value {
    width: 10px;
}

input[type="text"],
input[type="number"] {
    width: 100px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
}

input[type="text"] {
    width: 150px;
}


/* Total cell styling */

.gwp {
    font-weight: bold;
    background-color: #f2f2f2;
    text-align: center;
}

.gwp input {
    pointer-events: none;
    background-color: transparent;
    border: none;
    outline: none;
    font-weight: bold;
    width: 100px;
}


/* Add row button styling */

#add-row-btn {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

#add-row-btn:hover {
    background-color: #0056b3;
}

.table .form-check {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.form-check-input .dry {
    width: 15px;
    height: 15px;
}

.dropdown{
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
}

