@font-face {
    font-family: 'mojangles';
    src: url('mojangles.ttf') format('truetype');
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('https://www.minecraft.net/etc.clientlibs/minecraft/clientlibs/main/resources/img/bg-texture.png');
    background-size: 64px;
}

.container {
    text-align: center;
    background-color: #C6C6C6;
    padding: 20px;
    border: 2px solid #1E1E1E;
    box-shadow: inset -2px -4px 0px 0px #555555, inset 2px 2px 0px 0px #FFFFFF;
    min-width: 400px;
}

h1 {
    font-size: 24px;
    color: #404040;
    text-shadow: 2px 2px #BEBEBE;
}

.ore-input-group {
    margin: 20px 0;
}

.ore-input {
    width: calc(100% - 20px);
}

.result-container {
    margin-top: 20px;
    background-color: #313233;
    padding: 15px;
    border: 2px solid #1E1E1E;
    box-shadow: inset 2px 2px 0px 0px #555555, inset -2px -4px 0px 0px #2A2A2A;
    color: white;
    text-shadow: 2px 2px #313233;
}

.result-container p {
    margin: 0 0 10px 0;
}

.command-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    padding: 10px;
    border-radius: 4px;
    font-family: 'mojangles', 'unifont', 'Courier New', Courier, monospace;
    color: #00FF00;
    text-shadow: none;
}

#command {
    white-space: pre;
}

#copyBtn {
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 14px;
}
