body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#imageCanvas, #pixelCanvas {
    display: block;
    margin: 20px auto;
    border: 1px solid #ccc;
}

.crop-controls, .resize-controls {
    margin-top: 20px;
}

.crop-controls label, .resize-controls label {
    margin-right: 10px;
}

.crop-controls input, .resize-controls input {
    width: 60px;
    margin-right: 10px;
}

#colorInventory {
    margin-top: 20px;
    text-align: left;
}

#pixelGrid {
    display: inline-grid;
    margin-top: 20px;
    gap: 5px
}
#pixelGrid div {
    display: grid;
    border-radius: 43px;
}
#pixelGrid div div {
    width: 5px; /* Adjust the size as needed */
    height: 5px; /* Adjust the size as needed */
}