.btn-purple {
    background: linear-gradient(135deg, #6b46c1, #805ad5);
    border: none;
    transition: all 0.3s;
}
.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(107, 70, 193, 0.3);
}
.qr-placeholder {
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border-radius: 8px;
}
.qr-placeholder i {
    font-size: 3rem;
    color: #ddd;
}
.feature-icon {
    font-size: 2.5rem;
    color: #6b46c1;
    margin-bottom: 1rem;
}
input[type="color"] {
    cursor: pointer;
}
/* Custom styles for color inputs */
.custom-color-input {
    height: 45px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0;
    cursor: pointer;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Remove default inner padding/border for color input */
.custom-color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.custom-color-input::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}

.custom-color-input::-moz-color-swatch {
    border: none;
    border-radius: 4px;
}

/* Style for file upload input */
.custom-file-inputs {
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 6px 12px;
    background: #fff;
    cursor: pointer;
}

.custom-file-inputs:focus {
    border-color: #7e57c2; /* Optional: purple border on focus */
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(126, 87, 194, 0.25);
}

