body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

body {
    background: #171717 linear-gradient(135deg, #191919, #0f0f0f) no-repeat fixed center;
}

html {
    background-color: #171717;
}

.container {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 800px;
    background-color: #191919;
    border-radius: 25px;
    padding: 5px 20px 20px 20px;
    margin: 30px 0 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.oled-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
}

.oled-toggle button {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: auto;
}

.oled-toggle button:hover {
    background-color: #282828;
}

.container {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 800px;
    background-color: #191919;
    border-radius: 25px;
    padding: 5px 20px 20px 20px;
    margin: 30px 0 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    align-items: center;
}

.button {
    background-color: #1e1e1e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button:hover {
    transition: background-color 0.3s ease;
    background-color: #282828;
}

.button.disabled {
    background-color: #282828;
    color: #7a7a7a;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.special-buttons .button {
    background-color: #191919;
}

.special-buttons .button:hover {
    background-color: #1c1c1c;
}

.zizilan-gradient {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 255, 255, 0.1)), #1e1e1e;
}

.zizilan-gradient:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 255, 255, 0.2)), #282828;
}

.badjunia-gradient {
    background: linear-gradient(135deg, rgba(45, 232, 181, 0.3), rgba(143, 107, 255, 0.35)), #100724;
    border: 1px solid rgba(143, 107, 255, 0.3);
    box-shadow: 0 0 12px rgba(120, 75, 255, 0.2);
}

.badjunia-gradient:hover {
    background: linear-gradient(135deg, rgba(45, 232, 181, 0.4), rgba(143, 107, 255, 0.45)), #160c33;
    border-color: rgba(143, 107, 255, 0.4);
}

.link, .link:visited, .link:active {
    color: #a0a0a0;
    text-decoration: none;
}

.link:hover {
    color: #c8c8c8;
    text-decoration: underline;
}

.entry-container {
    width: 100%;
}

.entry {
    margin: 20px 0 0 0;
}

.entry h3 {
    margin: 0 0 0 0;
}

.entry p {
    text-align: left;
    margin: 5px 0 5px 0;
}

.entry-choice {
    margin: 20px 0;
    background-color: #1c1c1c;
    border-radius: 25px;
    padding: 5px 20px 20px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bug-fix {
    color: #ffc6b3;
}

.enhancement {
    color: #b3d9ff;
}

.addition {
    color: #b3ffc6;
}

.bug-deletion {
    color: #ffb3b3;
}

.separator {
    width: 80%;
    height: 5px;
    background-color: #282828;
    margin: 30px auto;
}

.space {
    height: 50px;
}

img {
    width: 100%;
    border: 1px solid black;
}

.input-field {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #1e1e1e;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.input-field::placeholder {
    color: #646464;
}

.dropdown {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    background-color: #1e1e1e;
    color: white;
    font-size: 16px;
}

.progress-container {
    width: 100%;
    margin-top: 20px;
    text-align: left;
}

.secondary-text {
    color: #a0a0a0;
}

.progress-bar {
    width: 0;
    height: 10px;
    background-color: #1e90ff;
    border-radius: 5px;
    margin-top: 5px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.code-block {
    background-color: #1e1e1e;
    color: #dcdcdc;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 10px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007acc;
}

.preview {
    margin-top: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


@media (max-width: 600px) {
    .container {
        width: 100%;
        background-color: initial;
        border-radius: initial;
        margin: 0;
        padding-bottom: 40px;
    }

    .button {
        width: 80%;
    }

    .changelog {
        width: 90%;
    }

    .oled-toggle {
        width: auto !important;
        position: fixed !important;
        top: 10px !important;
        right: 10px !important;
    }
}
