.table td {
    padding: 0.375em 0.6em;
}
.table th {
    padding: 0.5em 0.6em;
}

.cursor-pointer {
    cursor: pointer;
}

.form-check-input {
    visibility: hidden;
    position: relative;
}
.form-check-input:before {
    content: '';
    display: block;
    visibility: visible;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -0.07em;
    left: 0;
    border: 1px solid black;
    border-radius: 0.1em;
}

.form-check-input:after {
    content: '';
    display: block;
    visibility: visible;
    width: 110%;
    height: 60%;
    position: absolute;
    bottom: 0.35em;
    left: 0.145em;
    transform: rotate(-45deg) skew(-15deg);
    border-left: 2px solid green;
    border-bottom: 2px solid green;
    opacity: 0;
    transition: 0.2s ease opacity;
}

.form-check-input:checked:after {
    opacity: 1;
}

.image-group-thumb {
    width: 80px;
    height: 45px;
    object-fit: contain;
}

.comics-table .dropdown-menu {
    min-width: 80px;
}

.comics-table .dropdown-item:hover {
    cursor: pointer;
}

.comics-table .badge {
    max-width: 400px;
    overflow: hidden;
}



.modal-body {
    overflow: auto;
    max-height: calc(100vh - 12rem);
}
