/* General Styles */
body {
    background-color: #0B192C;
    opacity: 0.8;
    background-image: radial-gradient(#7d7d7d 0.5px, #0B192C 0.5px);
    background-size: 10px 10px;    color: #FFFFFF;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    max-height: 100vh;
}
a {
    color: #FF6500;
    text-decoration: none;
}
.container {
    text-align: center;
    padding: 50px;
}

/* Customization Styles */
.customizations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.customizations img {
    width: 150px; /* Increase the size of the icons */
    height: 150px; /* Ensure the icons are square */
    margin: 10px;
    border: 4px solid #c6c6c6;
    border-radius: 5px;
    image-rendering: pixelated;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.customizations img:hover {
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.customizations img.selected {
    border-color: #FF6500; /* Change border color to indicate selection */
}

#skinUpload {
    display: none;
}

#fileName {
    display: block;
    margin-top: 10px;
    color: #c9c9c9;
}

label.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 auto;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

#upload {
    text-align: center;
}


#canvas {
    display: block;
    margin: 0 auto;
}

#applyButton {
    display: block;
    margin: 20px auto;
}

.center {
    justify-content: center;
    align-items: center;
}

#product div {
    text-align: center;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 5px auto;
    background-color: #FF6500;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #1E3E62;
}

.button:disabled {
    background-color: #555555;
    cursor: not-allowed;
}

#upload {
    text-align: center;
}

/* Hidden Class */
.hidden {
    display: none;
}

/* Header Styles */
h1 {
    text-align: center;
    color: #FF6500;
}

h2 {
    text-align: center;
}