/* URL QR Generator - Professional Styles */
.url-qr-generator {
	max-width: 100%;
	margin: 0 auto;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	overflow: hidden;
}

.url-qr-container {
	display: flex;
	align-items: stretch;
}

.url-qr-left {
	flex: 1;
	padding: 40px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-right: 1px solid #e8e9ea;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 50%;
}

.url-qr-right {
	flex: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	max-width: 50%;
}

/* Input Section */
.url-qr-input-section {
	margin-bottom: 10px;
}

ul.menu-url {
    margin-bottom: 15px;
    list-style: none;
}
ul.menu-url > li {
    display: inline-block;
    margin: 0 5px 5px !important;
    border-radius: 5px;
    padding: 5px;
    transition: all .3s ease;
    cursor: pointer;
}
ul.menu-url > li:first-child {
    margin-left: 0 !important;
	background: var(--primary);
	color: #fff;
}
ul.menu-url > li:last-child {
    margin-right: 0 !important;
}
ul.menu-url > li:hover {
	background: var(--primary);
	color: #fff;
}

.url-qr-input-title {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 16px 0;
	color: var(--primary);
	letter-spacing: -0.02em;
}

.url-qr-input-icon {
	position: absolute;
	left: 16px;
	font-size: 18px;
	z-index: 1;
	opacity: 0.6;
	color: #666;
}

.url-qr-input-wrapper .url-qr-input {
	width: 100%;
	transition: all 0.3s ease;
	background: #fff;
	box-shadow: 0 0 0 black;
	border-radius: 5px;
}

.url-qr-input-wrapper .url-qr-input:focus {
	outline: none;
	border-color: var(--primary);
}

.url-qr-radio {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}
.url-qr-radio-inner > input {
    margin: 0;
    accent-color: var(--primary);
}
.url-qr-radio-inner > label {
    color: #808080;
    font-weight: 500;
}

.url-qr-placeholder:after {
    content: "";
    background: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .5;
}

/* Generate Button */
.url-qr-generate-btn {
    width: fit-content;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
	margin: 0;
}
button.url-qr-generate-btn:hover > i {
    transform: rotate(
20deg);
}
.url-qr-generate-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* QR Preview */
.url-qr-preview {
    margin-bottom: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    max-width: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.url-qr-placeholder {
	text-align: center;
	color: #6b7280;
}

.url-qr-placeholder-icon {
	font-size: 48px;
	display: block;
	margin-bottom: 12px;
	opacity: 0.6;
	color: #999;
	width: 48px;
    height: 48px;
	margin: 0 auto;
}

.url-qr-placeholder p {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
}

.url-qr-canvas {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Action Buttons */
.url-qr-actions {
	width: 100%;
	max-width: 300px;
}

.url-qr-download-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
	margin: 0;
}
.url-qr-download-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.url-qr-download-icon {
	font-size: 16px;
	margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
	.url-qr-container {
		flex-direction: column;
	}
	
	.url-qr-left,
	.url-qr-right {
		padding: 24px;
		max-width: 100%;
	}
	
	.url-qr-preview {
		min-height: 250px;
		padding: 20px;
		max-width: 100%;
	}
	
	.url-qr-actions {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.url-qr-generator {
		border-radius: 15px;
	}
	
	.url-qr-left,
	.url-qr-right {
		padding: 20px;
	}
}
