﻿.main-layout {
    background-color: #CFCFCF;
}
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;

}

*, *::before, *::after {
    box-sizing: inherit;
}

.main-layout {
    display: flex;
    flex-direction: column;
    background-color: var(--color-grey);
    height: 1980px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.main-content {
    padding-top: 154px;
}

.workspace {
    padding: 2rem;
    max-width: 130vw;
    margin: 0 auto;
    text-align: center;
}

.page-title {
    color: black;
    font-size: 5vw;
    font-weight: 700;
    margin-bottom: 3rem;
}

.regex-title {
    color: black;
    font-size: 3.2vw;
    font-weight: 700;
    margin-bottom: -3vw;
    text-align: left;
    width: 70%;
    max-width: 70%;
    padding-left: 0;
    margin-left: -90px;
    margin-right: auto;
    box-sizing: border-box;
}

.text-field-wrapper {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.text-field-container {
    margin-left: -400px;
    margin-top: 100px;
    background: white;
    border-radius: 43px;
    padding: 2rem;
    height: 20vh;
    width: 150%;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.text-field {
    width: 100%;
    min-height: 10vh;
    max-height: 20vh;
    border: none;
    outline: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 3vw;
    line-height: 1.6;
    background: transparent;
    display: block;
    resize: none;
    overflow-y: auto;
    box-sizing: border-box;
}

.generate-button-wrapper {
    width: 70%;
    margin-left: -300px;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.generate-button-container {
    display: flex;
    justify-content: flex-end;
    width: 150%;
    box-sizing: border-box;
}

.generate-button {
    background-color: var(--color-blue);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1.5rem 3.5rem;
    font-size: 2vw;
    font-weight: 700;
    min-width: 10vw;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    margin-right: -200px;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}