/* MFP CLOUD - Light Gradient Theme */
:root {
    --background-light: #f8f9fa;
    --surface-light: #ffffff;
    --primary-text: #212529;
    --secondary-text: #6c757d;
    --border-color: #dee2e6;
    --gradient: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899, #f97316);
}

body {
    background-color: var(--background-light);
    color: var(--primary-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar {
    background-color: var(--surface-light) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-text) !important;
}

.nav-link {
    color: var(--secondary-text) !important;
}

.nav-link:hover {
    color: var(--primary-text) !important;
}

.card {
    background-color: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
    font-weight: bold;
}

.btn-gradient {
    background-image: var(--gradient);
    background-size: 200% auto;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: background-position 0.3s ease-in-out;
}

.btn-gradient:hover {
    background-position: right center;
    color: white;
}

.btn-outline-gradient {
    background-color: transparent;
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: var(--gradient);
    color: var(--primary-text);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-gradient .text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.btn-outline-gradient:hover {
    background-image: var(--gradient);
    color: white;
}
.btn-outline-gradient:hover .text-gradient {
    -webkit-text-fill-color: white;
    background: none;
}


.form-control {
    background-color: var(--surface-light);
    border: 1px solid var(--border-color);
    color: var(--primary-text);
    border-radius: 0.5rem;
}

.form-control:focus {
    background-color: var(--surface-light);
    border-color: #4f46e5;
    color: var(--primary-text);
    box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.25);
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.progress-bar-gradient {
    background-image: var(--gradient);
}

.file-icon {
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 28px;
    position: relative;
}

.file-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s ease;
    opacity: 0;
}

tr:hover .file-icon::before {
    opacity: 1;
}