



.qr-preview-container {
  position: relative;
  display: inline-block;
}

#qrOverlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.logo-img {
    /* width: 170px; */
    border-radius: 6px;
    margin-right: 8px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* .logo::before {
    content: "⚡";
    background: #00d4ff;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
} */

.pro-badge {
    background: #00d4ff;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-weight: 500;
    cursor: pointer;
}

.account-btn::before {
    content: "👤";
}

.container {
    display: flex;
    height: 100vh;
    padding-top: 60px;
}

.sidebar {
    width: 220px;
    background: #616568;
    color: white;
    padding: 20px 0;
    overflow-y: auto;
}

.search-box {
    margin: 0 20px 30px 20px;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: none;
    border-radius: 6px;
    background: #2d3748;
    color: white;
    font-size: 14px;
    transition: all 0.2s;
}

.search-box input:focus {
    outline: none;
    background: #374151;
}

.search-box input::placeholder {
    color: #a0aec0;
}

.search-box::after {
    content: "🔍";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    pointer-events: none;
}

.clear-search-btn {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #a0aec0;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.clear-search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.search-results-count {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 8px;
    text-align: center;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.section-title {
    padding: 0 20px;
    font-size: 12px;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.menu-item:hover {
    background: #797d80;
}

.menu-item.active {
    background: #D94128;
    color: white;
}

.menu-item .count {
    margin-left: auto;
    background: #2d3748;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.menu-item.active .count {
    background: rgba(255,255,255,0.2);
}

.new-folder-btn {
    margin: 0 20px;
    padding: 10px 15px;
    background: transparent;
    border: 1px dashed #4a5568;
    color: #00d4ff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-folder-btn:hover {
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.trial-notice {
      display: flex;
  flex-direction: column;
margin-top: 30px;
  justify-content: flex-end;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
}

.trial-text {
    color: #a0aec0;
    font-size: 12px;
    margin-bottom: 10px;
}

.upgrade-btn {
    width: 100%;
    padding: 10px;
    background: #00d4ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.main-content {
    flex: 1;
    background: #F7F7F7;
    display: flex;
    flex-direction: column;
}

.content-header {
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 14px;
}

.create-btn {
    background: #EB362F;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.create-btn:hover {
    background: black;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.create-btn .plus-icon {
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.qr-list {
    margin-left: 10%;
    margin-right: 10%;
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    border: 1px dashed #e0e0e0;
}

.empty-state-icon {
    color: #00d4ff;
    margin-bottom: 20px;
}

.empty-state h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.empty-state p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.create-first-btn {
    display: inline-block;
    background: #00d4ff;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.create-first-btn:hover {
    background: #00b8e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.3);
}

.empty-state-tip {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid #e9ecef;
}

.tip-icon {
    font-size: 20px;
    margin-right: 12px;
    color: #ffc107;
}

.tip-text {
    font-size: 14px;
    color: #495057;
    text-align: left;
    line-height: 1.5;
}

.qr-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid black;
    /* border-radius: 8px; */
    margin-bottom: 15px;
    background: white;
    transition: all 0.2s;
}

.qr-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #EB362F;
}

.qr-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
}

.qr-details {
    flex: 1;
}

.qr-url {
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

.qr-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #666;
}

.qr-stats {
    text-align: center;
    margin-right: 30px;
}

.scan-count {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.scan-label {
    font-size: 12px;
    color: #666;
}

.qr-code-preview {
    width: 80px;
    height: 80px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
}

.qr-pattern {
    width: 60px;
    height: 60px;
    background: 
        linear-gradient(45deg, #000 25%, transparent 25%),
        linear-gradient(-45deg, #000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000 75%),
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    opacity: 0.8;
}



.status-badge {
    background: #41ABDB;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    text-align: center;
    transition: all 0.2s;
}

.status-badge.active {
    background: #10b981;
    color: white;
}

.status-badge.paused {
    background: #f59e0b;
    color: white;
}

.pause-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 6px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    margin-right: 8px;
}

.pause-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.pause-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.download-btn {
    background: transparent;
    color: #41ABDB;
    border: 1px solid #41ABDB;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.download-btn:hover {
    background: #41ABDB;
    color: white;
}

.inspiration-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.inspiration-items {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.inspiration-item {
    flex: 1;
    display: flex;
    gap: 15px;
}

.inspiration-icon {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.inspiration-text {
    flex: 1;
}

.inspiration-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.inspiration-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.inspiration-link {
    color: #00d4ff;
    text-decoration: none;
}

.details-btn {
    background: #EB362F;
    color: white;
    padding: 8px 23px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.details-btn::after {
    content: "→";
    font-weight: bold;
}

.details-btn:hover {
    background: black;
}

.design-btn {
    background: #EB362F;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.design-btn::after {
    content: "🎨";
    font-size: 12px;
}

.design-btn:hover {
    background: black;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 1000px;
    height: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.modal-header-left h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}

.modal-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.close {
    color: #9ca3af;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    margin-left: 8px;
}

.close:hover {
    color: #374151;
}

.modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
}

.modal-layout {
    display: flex;
    height: 100%;
}

/* Left Panel - QR Preview */
.qr-preview-panel {
    width: 40%;
    background: #f8f9fa;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-preview-container {
    margin-bottom: 11px;
    padding: 17px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-preview-image {
    width: 200px;
    height: 200px;
    display: block;
    transition: all 0.3s ease;
}

/* Frame styles */
.qr-preview-container.frame-rounded {
    border-radius: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


.qr-preview-container.frame-phone {
    border-radius: 25px;
    padding: 20px;
    background: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.qr-preview-container.frame-scan-me {
    border-radius: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
}

.qr-preview-container.frame-scan-me::after {
    content: "SCAN ME";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.qr-preview-container.frame-modern {
    border-radius: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

.qr-preview-container.frame-classic {
    border-radius: 8px;
    padding: 12px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
}

/* QR Code Style Variations */
.qr-preview-image.style-rounded {
    border-radius: 20px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

.qr-preview-image.style-dots {
    border-radius: 8px;
    filter: contrast(1.2) brightness(0.9);
}

.qr-preview-image.style-artistic {
    border-radius: 16px;
    filter: saturate(1.3) contrast(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.qr-preview-image.style-geometric {
    border-radius: 4px;
    filter: contrast(1.4) brightness(0.95);
}

.qr-preview-image.style-minimal {
    border-radius: 6px;
    filter: grayscale(0.3) contrast(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.qr-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.qr-actions .download-btn {
    background: #EB362F;
    color: #FFFF;
    border: none;
    padding: 12px 20px;
    border-radius: 600px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.qr-actions .download-btn:hover {
    background: black;

}

/*.menu-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.menu-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}
*/
/* Right Panel - Customization */
.customization-panel {
    width: 60%;
    padding: 32px;
    overflow-y: auto;
}

.customization-section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.section-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.help-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-link, .upload-link {
    margin-left: auto;
    color: #3b82f6;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.more-link:hover, .upload-link:hover {
    text-decoration: underline;
}

.option-thumbnails {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.04);
    position: relative;
    outline: none;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail:focus {
    border-color: #3b82f6;
    background: #f0f7ff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.10);
}

.thumbnail.active {
    border-color: #2563eb;
    background: #e0edff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.thumbnail-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 8px;
}

.logo-text {
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.thumbnail svg {
    width: 28px;
    height: 28px;
    color: #374151;
}

.thumbnail.active .logo-text,
.thumbnail.active svg {
    color: #2563eb;
}

.thumbnail[tabindex] {
    outline: none;
}

.thumbnail:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.qr-thumbnail {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 4px;
    position: relative;
}

.qr-thumbnail.rounded {
    border-radius: 8px;
}

.qr-thumbnail.phone-frame {
    border: 2px solid #374151;
    border-radius: 8px;
}

.qr-thumbnail.scan-me-frame {
    border: 2px solid #374151;
    border-radius: 8px;
    position: relative;
}

.qr-thumbnail.scan-me-frame::after {
    content: "SCAN";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: #374151;
    font-weight: 500;
}

.qr-thumbnail.modern-frame {
    border: 2px solid #3b82f6;
    border-radius: 12px;
}

.qr-thumbnail.classic-frame {
    border: 2px solid #d1d5db;
    border-radius: 4px;
}

.qr-thumbnail.rounded-style {
    border-radius: 50%;
}

.qr-thumbnail.dots-style {
    background: radial-gradient(circle, #000 2px, transparent 2px);
    background-size: 4px 4px;
}

.qr-thumbnail.artistic-style {
    background: linear-gradient(45deg, #000 25%, transparent 25%), 
                linear-gradient(-45deg, #000 25%, transparent 25%);
    background-size: 4px 4px;
}

.qr-thumbnail.geometric-style {
    background: repeating-linear-gradient(45deg, #000, #000 2px, transparent 2px, transparent 4px);
}

.qr-thumbnail.minimal-style {
    background: #000;
    opacity: 0.8;
}

.logo-text {
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

/* Custom logo styles */
.thumbnail[data-logo] .thumbnail-content {
    position: relative;
    overflow: hidden;
}

.thumbnail[data-logo] .custom-logo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.thumbnail[data-logo].has-custom-logo .thumbnail-content {
    background: transparent;
}

.thumbnail[data-logo].has-custom-logo .logo-text {
    display: none;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.color-option label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    min-width: 80px;
}

.color-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-input-group input[type="color"] {
    width: 40px;
    height: 32px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
}

.color-value {
    font-size: 12px;
    color: #6b7280;
    font-family: monospace;
}

.url-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 12px;
}

.url-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #374151;
    outline: none;
}

.edit-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
}

.edit-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.edit-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.edit-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.edit-btn:hover svg {
    transform: scale(1.1);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.save-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.save-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.save-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.save-btn:hover::before {
    left: 100%;
}

.save-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.save-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.save-btn:hover svg {
    transform: scale(1.1);
}

/* Header buttons enhancement */
.header-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    min-height: 36px;
}

.header-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.header-btn:hover svg {
    transform: scale(1.1);
}

/* Download button enhancement */
.download-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.download-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.download-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.download-btn:hover svg {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.save-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    flex: 1;
    justify-content: center;
}

.save-btn:hover {
    background: #059669;
}

.save-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .customization-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .download-btn, .modal-actions .save-btn {
        width: 100%;
    }
}