.modal2 {
    display: none; /* Ukryty modal domyślnie */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Półprzezroczyste tło */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal2 .modalInfo-dialog {
    position: relative;
}


.modal2 .modalInfo-content {
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    border: 3px solid #d8242a;
}

.modal2  button#x {
    color: white;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    background: #d8242a;
    border-radius: .375rem;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border: none;
    text-align: center;
    aspect-ratio: 1/1;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.modal2 #titleModalInfo {
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.modal2  .input-icon-wrapper {
    align-items: center;
    display: flex;
    margin-top: .25rem;
    position: relative;
}

.modal2  .input-icon {
    align-items: center;
    display: flex;
    left: 0;
    padding-left: .75rem;
    pointer-events: none;
    position: absolute;
}

.modal2  input#inputModalInfo1 {
    font-weight: 400;
    border: 1px solid black;
    border-radius: 0.5rem;
    display: block;
    padding: .5rem .75rem .5rem 2.5rem;
    width: 100%;
}

.modal2  button#buttonModalInfo1 {
    font-weight: 400;
    border: 1px solid black;
    border-radius: 0.5rem;
    display: block;
    padding: .5rem;
    width: 100%;
    margin-top: 1rem;
}

@media (min-width: 576px) {
    .modal2 .modalInfo-dialog {
        max-width: 500px;
        margin-right: auto;
        margin-left: auto;
    }
}

span.no {
    color: red;
    font-weight: 600;
}

span.yes {
    color: #0064d2;
    font-weight: 600;
}

#staticBackdrop button.btn-close {
    display: none;
}