.main-logo {
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url(../i/r81/logo.png) no-repeat;
    width: 200px;
    height: 73px;
}
.modal-window {
    justify-content: center; /* Centers horizontally */
    background-color: #fff;
    padding: 50px 50px 50px 50px;
    border-radius: 8px;
    width: 80%;
    max-width: 550px;
    max-height: 100vh;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    overflow-y: auto; /* Adds scrolling if content overflows vertically */
    box-sizing: border-box;
}

.modal-window p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin: 0;
}
.modal-window-second{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000;
}

.warning-message {
    color: red;
    font-weight: bold;
}

.descriptionTextInfo {
    text-transform: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 150px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.icon-text-container {
    display: flex;
    width: 100%;
}

.icon-text-container i {
    font-size: 40px;
    width: 20%;
}

.icon-text-container p {
    margin: 0;
    width: 80%;
    overflow-wrap: break-word;
}

.first-modal-button {
    margin: 20px 10px 0 50px;
}

.second-modal-button {
    margin: 30px 50px 0 40px;
}

#confirmationForm {
    min-width: 10em;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#confirmationForm button {
    min-width: 10em;
    margin: 0 auto;
}

