body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #121212;
    color: white;
    padding: 20px;
}

#container {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: auto;
}

.templates {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.template-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.template-btn:hover {
    transform: scale(1.1);
}

.profile-preview {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

canvas {
    border-radius: 50%;
    border: 2px solid white;
    width: 200px;
    height: 200px;
    background: black;
}

button {
    background: blue;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: darkblue;
}
.color-picker {
    
    gap: 10px;
}

.color-label {
    font-weight: bold;
    color: #ffffff;
    font-size: 16px;
}

#bgColorPicker {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 80%;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
}
