/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    /* For vertical scrollbars */
    height: 10px;
    /* For horizontal scrollbars */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: scroll;
}

.fixed-vertical {
    max-height: 300px;
}

.fixed-width {
    white-space: nowrap;
    width: 15px !important;
}

.table-scroll table {
    min-width: 800px;
    width: max-content;
}

.work-table {
    width: 100%;
    border-collapse: collapse;
}

.work-table th,
.work-table td {
    border: 1px solid #ccc;
    text-align: left;
    padding: 8px;
}

/* Styling for hover-info class */
.hover-info {
    cursor: pointer;
    /* hand icon on hover */
}

/* The ::after pseudo-element can be used to show the title content in a bigger and more readable format on hover, though this is optional */
.hover-info:hover::after {
    content: attr(title);
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    width: 250px;
    /* adjust width as needed */
    z-index: 1;
    top: 0;
    left: 100%;
    font-size: 14px;
    /* adjust size as needed */
    white-space: pre-wrap;
    /* this will maintain the line breaks from the title attribute */
}


/* Add to your CSS file or within a <style> tag in your HTML head */
.input-group div {
    margin-bottom: 5px;
    /* Space out the radio button groups */
}

.input-group input[type="radio"] {
    margin-right: 5px;
    /* Space between the radio button and the label */
}