* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: 'Montserrat';
    src: url(7e687123cd4528224ce5.ttf);
    font-style: normal;
    font-display: swap
}

body {
    background-color: #0b0b0c;
    color: white;
    padding: 1.25rem;
    font-family: Montserrat;
    font-weight: 500;
}
.container {
    max-width: 42rem;
    margin: 0 auto;
}
h1 {
    font-family: Montserrat;
    font-size: 1.5em;
    font-weight: 900;
    margin-bottom: 1rem;
}

textarea, select {
    font-family: Montserrat;
    width: 100%;
    border-radius: 15px;
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 15px;
    background-color: #242429;
    margin-bottom: 10px;
    border: 0;
}


select {
    width: min-content !important;
    margin-right: 10px;
    border-radius: 7px !important;
    height: 38px;
    padding: 10px !important;
    margin-bottom: 0px;
}

::-webkit-scrollbar {
    width: 8.5px;
    border-radius: 5px;
    background-color: #0b0b0c;
}

::-webkit-scrollbar-thumb {
    background-color: #3e3e45;
    border-radius: 5px
}

::-webkit-scrollbar-thumb:hover {
    background-color: #9c9c9c;
}

label {
    font-size: 15px;
    font-family: Montserrat;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: #e2e2e2;
}

.box {
    max-width: 700px;
    margin: 0 auto;
}

textarea:focus-visible {
    outline: 1px solid #68a5ff;
}

select:focus-visible {
    outline: 0px;
}

.button {
    background-color: #376fc1;
    border: 0;
    border-radius: 7px;
    color: white;
    height: 38px;
    font-weight: bold;
    padding: 10px;
    padding-bottom: 8px;
    font-size: .8em;
    font-family: Montserrat;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #2e5ba0;
}

.relative {
    position: relative;
}

#copyBtn {
    position: absolute;
    top: 15px;
    right: -15px;
    background-color: #376fc1;
    font-family: Montserrat;
    font-size: .8em;
    font-weight: 600;
    padding: 7px 10px;
    border: 0;
    display: inline-flex;
    align-items: center; 
    justify-content: center; 
    gap: 0.3rem; 
    color: white;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s;
}
#copyBtn:hover {
    background-color: #2e5ba0;
}
#compressionStats {
    margin-top: 1rem;
    font-size: 0.875rem;
    background-color: #376fc1;
    border-radius: 7px;
    padding: 15px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

#compressionStats.show {
    opacity: 1;
}
#copy-notification {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

#copy-notification {
    position: fixed;
    height: max-content;
    display: inline-flex;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #376fc1;
    font-size: 15px;
    font-weight: 600;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#copy-notification.show {
    top: 20px;
    height: max-content;
}

#copyBtn svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}
