body 
{
    background-color: #21242a;
    color: white;
    margin: 0;
    padding: 0;
}
#header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 12px;
}
#logo {
    height: 60px;
    width: auto;
}
#header h1 {
    margin: 0;
    font-size: 32px;
}
#boxes {
    margin: 20px 500px;
}
#upload-box {
    border: 2px solid white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#data-box {
    margin-top: 20px;
    border: 2px solid white;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#upload-button {
    background-color: #3b82f6;
    color: white;
    padding: 12px 24px;
    cursor: pointer;
}

#output-box{
    margin-top: 20px;
    border: 2px solid white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
}
#output-box img {
    max-height: 90%;
    margin: 2px;
}
.emoji-tile {
    position: relative;
    border: 2px solid white;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    flex-shrink: 0;
}
.emoji-index {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #3b82f6;
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.2;
}
#paste-box {
    margin-top: 20px;
    border: 2px solid white;
    padding: 10px;
    text-align: center;
}
#paste-string {
    font-family: monospace;
    word-break: break-all;
    color: #3b82f6;
}
#copy-button {
    margin-top: 8px;
    padding: 6px 14px;
    background-color: #3b82f6;
    color: white;
    border: none;
    cursor: pointer;
}
#upload-box img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
}
#button-box {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#button-box button {
    margin: 0 5px;
    padding: 8px 16px;
    background-color: #3b82f6;
    color: white;
    border: none;
    cursor: pointer;
}
