* {
    box-sizing: border-box;
}

:root {
    /* Modern Blue Theme */
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent-color: #06b6d4;
    --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --secondary-color: #64748b;
    --bg-color: #f0f9ff;
    --bg-gradient: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    --sidebar-bg: #ffffff;
    --border-color: #bae6fd;
    --text-color: #0c4a6e;
    --text-light: #475569;
    --hover-color: #e0f2fe;
    --active-color: #bae6fd;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(14, 165, 233, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(14, 165, 233, 0.1), 0 2px 4px -1px rgba(14, 165, 233, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(14, 165, 233, 0.1), 0 4px 6px -2px rgba(14, 165, 233, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(14, 165, 233, 0.1), 0 10px 10px -5px rgba(14, 165, 233, 0.04);

    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.18);
}

/* Global body styles removed to inherit from dashboard.css */

.workspace-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.5;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.toolbar {
    display: flex;
    gap: 0.75rem;
}

.btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--hover-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
    gap: 1rem;
    padding: 1rem;
    background: transparent;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.tool-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.view-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: var(--hover-color);
    border-radius: 1rem;
}

.btn-view {
    padding: 0.75rem;
    border: none;
    background: transparent;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
}

.btn-view:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.btn-view.active {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    transform: scale(1.05);
}

.tools-section {
    margin-bottom: 2rem;
}

.tools-section h4 {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tool-btn,
.furniture-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    margin-bottom: 0.75rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
}

.tool-btn:hover,
.furniture-btn:hover {
    background: var(--hover-color);
    border-color: var(--primary-color);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.tool-btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.tool-btn span,
.furniture-btn span {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.furniture-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.furniture-btn {
    padding: 0.75rem;
    text-align: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-direction: column;
}

.furniture-btn span {
    font-size: 2rem;
}

.tools-section label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
}

.tools-section input[type="number"] {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    background: white;
    color: var(--text-color);
}

.tools-section input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.tools-section input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Canvas Area */
.canvas-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.canvas-header {
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-info {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
}

#projectName {
    font-weight: 700;
    color: var(--text-color);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#cursorPosition {
    color: var(--secondary-color);
    font-family: 'JetBrains Mono', monospace;
    background: var(--hover-color);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.canvas-controls {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 0.75rem;
    cursor: pointer;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.btn-icon:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-icon:active {
    transform: scale(0.95);
}

.canvas-container {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

#canvas2D,
#canvas3D {
    display: block;
    width: 100%;
    height: 100%;
}

.canvas-footer {
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Properties Panel */
.properties-panel {
    width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.properties-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hint {
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-style: italic;
    padding: 1rem;
    background: var(--hover-color);
    border-radius: 0.75rem;
    border-left: 3px solid var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 74, 110, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    margin: 5% auto;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        transform: translateY(-100px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close {
    color: var(--secondary-color);
    float: right;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}

.close:hover {
    background: var(--hover-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

#modalTitle {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#modalBody {
    margin-top: 1.5rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--hover-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 10px;
    border: 2px solid var(--hover-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .sidebar,
    .properties-panel {
        width: 250px;
    }

    .main-content {
        gap: 0.5rem;
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {

    .sidebar,
    .properties-panel {
        display: none;
    }

    .furniture-category {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tooltips */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0.75rem;
    background: var(--text-color);
    color: white;
    font-size: 0.75rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    margin-bottom: 0.5rem;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Success/Error States */
.success {
    background: var(--success-color);
    color: white;
}

.warning {
    background: var(--warning-color);
    color: white;
}

.error {
    background: var(--danger-color);
    color: white;
}

/* Focus styles */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Drag and Drop Overlay */
.drag-drop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 165, 233, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drag-drop-overlay.drag-drop-active {
    opacity: 1;
    visibility: visible;
}

.drag-drop-content {
    text-align: center;
    color: white;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drag-drop-overlay.drag-drop-active .drag-drop-content {
    transform: scale(1);
    animation: floatUpDown 2s ease-in-out infinite;
}

.drag-drop-icon {
    margin-bottom: 2rem;
    color: white;
    animation: rotateIcon 3s linear infinite;
    display: inline-block;
}

@keyframes rotateIcon {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-5deg) scale(1.05);
    }

    75% {
        transform: rotate(5deg) scale(1.05);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.drag-drop-icon svg {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.drag-drop-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.drag-drop-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.drag-drop-hint {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.drag-drop-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: pulseBadge 2s ease-in-out infinite;
}

/* --- UTILITY CLASSES FOR INLINE STYLE CLEANUP --- */

.w-100 { width: 100% !important; }
.w-100-px { width: 100px !important; }
.w-20 { width: 20px !important; }
.h-20 { height: 20px !important; }
.h-300 { height: 300px !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
/* .d-none declared LAST so that "hidden wins" when an element ends up
   with both .d-none and .d-block/.d-flex (equal specificity → source order
   decides). Fixes controls that stayed visible after add('d-none'). */
.d-none { display: none !important; }
.text-center { text-align: center !important; }

/* Margins & Paddings */
.m-8-0 { margin: 8px 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-6 { margin-bottom: 6px !important; }
.mb-4 { margin-bottom: 4px !important; }
.mr-8 { margin-right: 8px !important; }
.mr-6 { margin-right: 6px !important; }
.ml-32 { margin-left: 32px !important; }
.ml-28 { margin-left: 28px !important; }
.ml-8 { margin-left: 8px !important; }
.mt-8 { margin-top: 8px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-12 { margin-top: 12px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 4px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.pt-12 { padding-top: 12px !important; }
.pt-20 { padding-top: 20px !important; }
.p-20-0 { padding: 20px 0 !important; }
.p-0-20-20-20 { padding: 0 20px 20px 20px !important; }
.p-20-20-0-20 { padding: 20px 20px 0 20px !important; }
.p-60-20 { padding: 60px 20px !important; }

/* Colors */
.color-success { color: #4CAF50 !important; }
.color-success-text { color: #28a745 !important; }
.color-primary-text { color: #2196F3 !important; }
.color-muted { color: #999 !important; }
.color-dark { color: #333 !important; }
.color-danger-text { color: #f5576c !important; }
.bg-success { background: #28a745 !important; }
.bg-materials-info { background: #e8f5e9 !important; }
.bg-fff { background: #ffffff !important; }
.bg-f0 { background: #f0f0f0 !important; }
.bg-hover { background: var(--hover-color) !important; }
.bg-active { background: var(--active-color) !important; }

/* Borders */
.border-top-ddd { border-top: 1px solid #ddd !important; }
.border-top-e0 { border-top: 1px solid #e0e0e0 !important; }

/* Flex & Grid */
.flex-1 { flex: 1 !important; }
.flex-column { display: flex !important; flex-direction: column !important; }
.uploader-grid-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
}
.flex-row-center-between {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}
.flex-column-gap-15 {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}
.grid-objects {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 20px !important;
}

/* Specific Component Styles */
.info-box-placeholder {
    text-align: center;
    padding: 20px 0;
    color: #999;
}

.high-quality-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
}

.edit-3d-object-btn {
    background: #2196F3 !important;
    border: none !important;
}

.edit-object-btn {
    background: #4CAF50 !important;
    border: none !important;
}

.modal-close-abs {
    position: absolute !important;
    right: 20px !important;
    top: 15px !important;
}

.cursor-pointer { cursor: pointer !important; }

.font-size-14 { font-size: 14px !important; }
.font-size-13 { font-size: 13px !important; }
.font-size-16 { font-size: 16px !important; }
.font-size-64 { font-size: 64px !important; }
.font-weight-600 { font-weight: 600 !important; }
.font-italic { font-style: italic !important; }
.line-height-1-4 { line-height: 1.4 !important; }

/* Additional Utilities */
.p-10-15 { padding: 10px 15px !important; }
.p-15-20 { padding: 15px 20px !important; }
.p-10 { padding: 10px !important; }
.gap-15 { gap: 15px !important; }
.gap-16 { gap: 16px !important; }
.gap-10 { gap: 10px !important; }
.mr-5 { margin-right: 5px !important; }
.mb-5 { margin-bottom: 5px !important; }
.white-space-nowrap { white-space: nowrap !important; }
.bg-f9 { background: #f9f9f9 !important; }
.max-w-500 { max-width: 500px !important; }
.max-w-600 { max-width: 600px !important; }
.m-20-0-10-0 { margin: 20px 0 10px 0 !important; }
.m-0-0-20-0 { margin: 0 0 20px 0 !important; }
.color-666 { color: #666 !important; }
.color-555 { color: #555 !important; }
.color-2e7d32 { color: #2e7d32 !important; }
.color-blue { color: #007bff !important; }
.min-w-140 { min-width: 140px !important; }
.border-ddd { border: 1px solid #ddd !important; }
.border-e0 { border: 1px solid #e0e0e0 !important; }
.border-ccc { border: 1px solid #ccc !important; }
.border-2-solid { border: 2px solid var(--border-color) !important; }
.border-success { border: 1px solid #28a745 !important; }
.border-left-materials { border-left: 3px solid #4caf50 !important; }
.rounded-8 { border-radius: 8px !important; }
.rounded-4 { border-radius: 4px !important; }
.rounded-3 { border-radius: 3px !important; }

.flex-row-center-gap-5 {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.flex-row-center-gap-10 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.flex-row-end-gap-10 {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 10px !important;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    }
}

.drag-drop-or {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 400;
}

/* Pulse animation for drag state */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive adjustments for drag & drop */
@media (max-width: 768px) {
    .drag-drop-title {
        font-size: 2rem;
    }

    .drag-drop-subtitle {
        font-size: 1rem;
    }

    .drag-drop-icon svg {
        width: 80px;
        height: 80px;
    }
}