.button-container {
    display: flex;
    justify-content: flex-end;
    margin: 10px;
}

.rounded-button {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 1.5rem;
}

.eye-icon {
    font-size: 24px;
    color: white;
    text-shadow: 0px 0px 5px black;
    opacity: 40%;
    transition: opacity 0.3s;
}

.eye-icon:hover {
    opacity: 1;
}

.modal-center{
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.modal-dialog {
    max-width: 90% !important;
}

.modal-body {
    height: 90vh;
    overflow: hidden;
}


