@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html {
    width: 100%;
    height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #fff;
}

body {
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.mud-icon-button-size-large.mud-button > .mud-icon-button-label > .mud-icon-size-large {
    font-size: 4rem !important;
}

.wideOverlay .mud-overlay-content {
    width: 50%
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000; /* Ensure the overlay is above other content */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    z-index: 1001; /* Ensure the dialog is above the overlay */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add a shadow effect */
    max-width: 400px; /* Limit the maximum width of the dialog */
}

    /* Increase font size */
    .modal-dialog input[type="text"] {
        font-size: 16px;
        padding: 8px;
        margin-bottom: 10px;
        width: calc(100% - 16px);
    }

    /* Style buttons */
    .modal-dialog button {
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .modal-dialog .btn-primary {
        background-color: #007bff;
        color: #fff;
    }

        .modal-dialog .btn-primary:hover {
            background-color: #0056b3;
        }

    .modal-dialog .btn-secondary {
        background-color: #6c757d;
        color: #fff;
    }

        .modal-dialog .btn-secondary:hover {
            background-color: #5a6268;
        }