html {
    background: linear-gradient(135deg, #6600FF, #3300cc);
    min-height: 100%;
    min-width: 100%;
}

body {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin: 0px;
    padding: 0px;
}

div {
    margin: 0;
    padding: 0;
}

table {
    margin: 4px 0px;
}

@keyframes rotateimage {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.regexdocs {
    background-color: #000000CC;
    font-size: 16px;
    margin: 4px;
    max-width: 94%;
    overflow: auto;
    padding: 4px;
    width: 960px;
}

.regexdocs input {
    margin: 4px;
}

.regexinput {
    background-color: #000000cc;
    color: white;
    display: block;
    height: 60px;
    font-size: 20px;
    margin: 4px;
    max-width: 94%;
    padding: 4px;
    width: 960px;
}

.regexloading {
    color: #fff;
    display: flex;
    font-size: 32px;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.regexloading img {
    animation-duration: 1.5s;
    animation-name: rotateimage;
    animation-iteration-count: infinite;
    animation-direction: normal;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.regexloadinginfo {
    animation: fadeIn 0s;
    animation-delay: 10s;
    animation-fill-mode: forwards;
    margin: 8px;
    opacity: 0;
    position: fixed;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.regexresults {
    background-color: #000000CC;
    color: white;
    display: block;
    font-size: 20px;
    height: 90px;
    margin: 4px;
    max-width: 94%;
    overflow: auto;
    padding: 4px;
    width: 960px;
}

.regextext {
    background-color: #000000cc;
    color: white;
    display: block;
    font-size: 20px;
    height: 60px;
    margin: 4px;
    max-width: 94%;
    padding: 4px;
    width: 960px;
}

.regexdisplay {
    background-color: #000000cc;
    font-size: 30px;
    margin-bottom: 4px;
    padding: 7px;
    word-wrap: anywhere;
}

.regexbuttonabout {
    position: absolute;
    right: 0;
}

.regexbuttonshare {
    background-color: #fff;
    border-radius: 4px;
    display: inline-block;
    margin-right: 8px;
    padding: 4px;
    vertical-align: middle;
}

.regexbuttonshare a {
    display: flex;
}

.regexbuttonshare a img {
    height: auto;
    max-width: 100%;
}

.regexdialogsharerow {
    align-items: center;
    display: flex;
}

.regexdialogsharerow button{
    align-items: center;
    display: flex;
    margin-right: 8px;
}

.fullscreenoverlay {
    background-color: #000000cc;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.appdialog {
    background: linear-gradient(135deg, #6600ff, #3300cc);
    border-radius: 16px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    overflow: hidden;
    padding: 16px;
    position: relative;
    width: 400px;
    z-index: 100;
}

.apptoast {
    background: linear-gradient(135deg, #6600ff, #3300cc);
    border-radius: 16px;
    bottom: 8px;
    font-size: 16px;
    overflow: hidden;
    padding: 16px;
    position: fixed;
    right: 8px;
    width: 200px;
    z-index: 100;
}

.teletype
{
    font-family: 'Courier New', Courier, monospace
}

.text {
    color: #ffffffee;
    margin: 6px;
}

th {
    text-align: left;
}

.param {
    color: #2eabfe;
}

.bracket {
    color: #2eabfe;
}

.wildcard {
    color: #ff3f7f;
}

.digit {
    color: #2eabfe;
}

.letter {
    color: #ddA54e;
}

.default {
    color: #05c389;
}

a:link {
    background-color: transparent;
    color: #0ef;
}

a:visited {
    background-color: transparent;
    color: #0ef;
}

a:hover {
    background-color: transparent;
    color: #3ff;
    cursor: pointer;
}

a:active {
    background-color: transparent;
    color: #0ef;
}
