.containpred h1 {
    font-size: 3.2rem;
    line-height: 3.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f191c; /* Dark color */
}

.containpred form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.containpred form label {
    font-size: 1.6rem;
    color: #1f191c; /* Dark color */
}

.containpred form input {
    font-size: 1.6rem;
    padding: 10px;
    border: 1px solid #1f191c; /* Dark color */
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added shadow for better appearance */
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100px;
}

.containpred form input:focus {
    border-color: #afbbd3; /* Accent color */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.containpred form button {
    font-size: 1.6rem;
    padding: 10px 20px;
    background-color: #2d2d2e; /* Button background color */
    color: #e7eaf1; /* Button text color */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.containpred form button:hover {
    background-color: #1f191c; /* Darker button background color on hover */
    transform: translateY(-2px); /* Slight lift effect on hover */
}
.a-main-container {
    padding: 20px;
}
.dataTables_wrapper {
    width: 100%;
    overflow: hidden;
}
table.dataTable {
    width: 100% !important;
    margin: 0 !important;
    background-color: rgba(255, 255, 255, 0.1);
}
.dataTables_scrollBody {
    overflow-x: hidden !important;
}
td.details-control {
    cursor: pointer;
}
tr.shown td.details-control:before {
    color: red;
}
td.details-control:before {
    font-family: 'FontAwesome';
    content: '\f067';
    color: green;
}
tr.shown td.details-control:before {
    content: '\f068';
    color: red;
}
.custom-checkbox {
    pointer-events: auto;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control::before {
    background-color: #6c6c6c;
}