.small_size {
    font-size: 10pt;
}

hr.big {
    border: 10px solid black;
    border-radius: 5px;
}

input[type="checkbox"] {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.image_container {
    position: relative;
    text-align: center;
    color: white;
}

/* Bottom right text */
.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 5px;
}

/* Top left text */
.top-left {
    position: absolute;
    top: 4px;
    left: 4px;
    padding: 4px;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 3px;
    color: black;
}

.mouse {
    cursor: pointer;
}

.col-scrollable {
    height: 1000px;
    overflow-y: scroll;
}

.cards-row {
    align-items: stretch;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.projekt-card {
    /*float: left;*/
    max-width: 33.333%;
    padding: .75rem;
    margin-bottom: 2rem;
    border: 0;
    flex-basis: 33.333%;
    flex-grow: 0;
    flex-shrink: 0;
}

.projekt-card > label {
    width: 100%;
}

.projekt-card > label > img {
    margin-top: .75rem;
    width: 100%;
}

.small_link {
    font-size: 8pt;
}

.div_dataframe {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: auto;
}

.dataframe thead tr th {
    text-align: right;
    vertical-align: bottom;
    min-width: 120px;
}

.dataframe thead tr:last-child th {
    text-align: left;
    vertical-align: bottom;
    min-width: 100px;
}

.dataframe td {
    text-align: right;
}

.image {
    width: auto;
    height: auto;
    max-width: 100%;
}

.mouse_pointer {
    cursor: pointer;
}


/* ============ modal image styles ============ */

/* Style the Image Used to Trigger the Modal */
.modal-thumbnail {
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
}

.modal-thumbnail:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.modal-dark {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1500; /* Sit on top */
    padding: 100px 15px 15px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-image {
    margin: auto;
    padding: 10px;
    display: block;
    width: 80%;
    max-width: 1320px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
.modal-image-text {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1320px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-image, .modal-image-text {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

/* find duplicates */
.numbered-divider {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.numbered-divider .number {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.numbered-divider .button {
    margin-right: 10px;
}

.numbered-divider .line {
    flex-grow: 1;
    height: 2px;
    background-color: #007bff;
}