/* ==========================================
   CAM Verifier Module Styles
   ========================================== */

/* Container principale */
.cam-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease-out;
}

/* Header CAM */
.cam-header {
    margin-bottom: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

/* Tab Navigation */
.cam-tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    min-height: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.cam-tab-btn i {
    font-size: 0.95em;
    transition: transform 0.3s ease;
}

/* Default (Inactive) Tab State */
.cam-tab-btn {
    color: #64748b;
}

.cam-tab-btn:hover:not(.cam-tab-active) {
    background-color: #f1f5f9;
    color: #475569;
}

.cam-tab-btn:hover:not(.cam-tab-active) i {
    transform: scale(1.05);
}

/* Active Tab State - ONLY applied via .cam-tab-active class */
.cam-tab-btn.cam-tab-active {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    color: #0066cc;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.12);
    border: 1px solid rgba(0, 102, 204, 0.15);
    font-weight: 600;
}

.cam-tab-btn.cam-tab-active i {
    color: #0066cc;
    transform: scale(1.1);
}

/* Content Area */
#cam-content {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    min-height: 500px;
}

/* Dashboard Cards */
.stat-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid var(--border-color, #e5e7eb);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: rgba(0, 102, 204, 0.3);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stat-card-title {
    font-weight: 600;
    color: var(--text-color, #1f2937);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-card-subtitle {
    font-size: 0.75rem;
    color: var(--secondary-color, #6b7280);
    margin-top: 0.25rem;
}

.stat-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    text-transform: uppercase;
}

.stat-badge.compliant {
    background-color: #f0fdf4;
    color: #15803d;
    border-color: #bbf7d0;
}

.stat-badge.non-compliant {
    background-color: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 0.5rem;
    background-color: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 0.375rem;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.progress-bar-fill.mandatory {
    background-color: #ef4444;
}

.progress-bar-fill.compliant {
    background-color: #22c55e;
}

.progress-bar-fill.reward {
    background-color: #3b82f6;
}

/* Checklist Styles */
.checklist-section {
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color, #e5e7eb);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.checklist-header {
    padding: 0.75rem 1.25rem;
    background-color: #f9fafb;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
    font-weight: 600;
    color: var(--text-color, #1f2937);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checklist-header::before {
    content: '';
    width: 0.25rem;
    height: 1rem;
    background-color: var(--primary-color, #0066cc);
    border-radius: 9999px;
}

.checklist-item {
    padding: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    gap: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item:hover {
    background-color: #f9fafb;
}

.checklist-item input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checklist-item-content {
    flex: 1;
}

.checklist-item-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.375rem;
}

.checklist-item-code {
    font-family: monospace;
    font-size: 0.625rem;
    font-weight: 700;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    color: var(--secondary-color, #6b7280);
}

.checklist-item-text {
    font-weight: 500;
    color: var(--text-color, #1f2937);
}

.checklist-item input[type="checkbox"]:checked ~ .checklist-item-content .checklist-item-text {
    text-decoration: line-through;
    color: var(--secondary-color, #9ca3af);
}

.checklist-item-badge {
    margin-left: auto;
    font-size: 0.625rem;
    font-weight: 700;
    border: 1px solid transparent;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.checklist-item-badge.mandatory {
    background-color: #fee2e2;
    color: #7f1d1d;
    border-color: #fecaca;
}

.checklist-item-badge.reward {
    background-color: #f0fdf4;
    color: #065f46;
    border-color: #bbf7d0;
}

.checklist-item-description {
    font-size: 0.875rem;
    color: var(--secondary-color, #6b7280);
    line-height: 1.5;
}

.checklist-item input[type="checkbox"]:checked ~ .checklist-item-content .checklist-item-description {
    color: #d1d5db;
}

/* Baseline Calculator Table */
.baseline-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background-color: white;
}

.baseline-table-wrapper {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 1.5rem 0;
}

.baseline-table thead {
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    border-bottom: 2px solid #e2e8f0;
    position: sticky;
    top: 0;
}

.baseline-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-right: 1px solid #e2e8f0;
}

.baseline-table th:last-child {
    border-right: none;
}

.baseline-table th.numeric {
    text-align: right;
}

.baseline-table th.energy-elec {
    background: linear-gradient(to bottom, #eff6ff, #dbeafe);
    color: #0369a1;
    font-weight: 700;
}

.baseline-table th.energy-gas {
    background: linear-gradient(to bottom, #fffbeb, #fef3c7);
    color: #92400e;
    font-weight: 700;
}

.baseline-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.baseline-table tbody tr:hover {
    background-color: #f8fafc;
    box-shadow: inset 0 0 0 1px rgba(0, 102, 204, 0.08);
}

.baseline-table tbody tr:last-child {
    border-bottom: 2px solid #e2e8f0;
}

.baseline-table td {
    padding: 0.75rem 1rem;
    border-right: 1px solid #f1f5f9;
    vertical-align: middle;
}

.baseline-table td:last-child {
    border-right: none;
}

.baseline-table td.numeric {
    text-align: right;
    font-weight: 500;
    color: #334155;
}

.baseline-table input[type="text"],
.baseline-table input[type="number"],
.baseline-table select {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    background-color: white;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #1e293b;
}

.baseline-table input[type="text"]:focus,
.baseline-table input[type="number"]:focus,
.baseline-table select:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1), inset 0 0 0 1px rgba(0, 102, 204, 0.2);
    outline: none;
    background-color: #ffffff;
}

.baseline-table input[type="text"].transparent {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
}

.baseline-table input[type="text"].transparent:focus {
    background-color: rgba(0, 102, 204, 0.05);
    border-bottom: 2px solid #0066cc;
}

.baseline-table select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23475569' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
    appearance: none;
}

.baseline-table tfoot {
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
    border-top: 2px solid #e2e8f0;
}

.baseline-table tfoot td {
    padding: 1rem;
    border-right: 1px solid #e2e8f0;
}

.baseline-table tfoot td:last-child {
    border-right: none;
}

/* Numeric Cell Styling */
.numeric-cell {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
}

.baseline-table .numeric-cell {
    font-weight: 500;
    color: #1e293b;
}

.baseline-table .energy-elec {
    background: linear-gradient(to bottom, #dbeafe 0%, #f0f9ff 100%);
}

.baseline-table .energy-gas {
    background: linear-gradient(to bottom, #fef3c7 0%, #fffbeb 100%);
}

/* Conversion Factors Table */
.conversion-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
}

.conversion-table thead {
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    border-bottom: 2px solid #e2e8f0;
}

.conversion-table th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-right: 1px solid #e2e8f0;
}

.conversion-table th:last-child {
    border-right: none;
}

.conversion-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.conversion-table tbody tr:hover {
    background-color: #f8fafc;
}

.conversion-table tbody tr:last-child {
    border-bottom: none;
}

.conversion-table td {
    padding: 0.75rem 1rem;
    border-right: 1px solid #f1f5f9;
    color: #475569;
}

.conversion-table td:last-child {
    border-right: none;
}

.conversion-table td:first-child {
    font-weight: 500;
    color: #1e293b;
}

.conversion-table td:last-child {
    text-align: right;
    font-family: 'Courier New', monospace;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    color: #64748b;
    font-weight: 500;
}

/* Buttons */
.cam-btn {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.02em;
}

.cam-btn.primary {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.cam-btn.primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004499 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
}

.cam-btn.primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 102, 204, 0.2);
}

.cam-btn.secondary {
    background-color: #f8fafc;
    color: #64748b;
    border: 1.5px solid #cbd5e1;
}

.cam-btn.secondary:hover {
    background-color: #f1f5f9;
    color: #334155;
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cam-btn.secondary:active {
    transform: translateY(0);
}

.cam-btn.danger {
    background-color: transparent;
    color: #ef4444;
    border: 1px solid #fecaca;
}

.cam-btn.danger:hover {
    background-color: #fef2f2;
    border-color: #fca5a5;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.1);
}

/* Button Icons */
.cam-btn i {
    font-size: 0.95em;
    transition: transform 0.3s ease;
}

.cam-btn:hover i {
    transform: scale(1.1);
}

/* Buttons Container in Header */
#btn-reset,
#btn-export {
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

#btn-export {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.25);
}

#btn-export:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004499 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.35);
    transform: translateY(-2px);
}

#btn-export:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 102, 204, 0.15);
}

#btn-reset {
    background-color: white;
    color: #64748b;
    border: 1.5px solid #cbd5e1;
}

#btn-reset:hover {
    background-color: #f8fafc;
    color: #334155;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

#btn-reset:hover .fa-trash-alt {
    color: #ef4444;
}

#btn-reset .fa-trash-alt {
    transition: color 0.3s ease;
}

#btn-reset:active {
    transform: translateY(0);
}

/* Utility Classes (Tailwind-like) */
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-1 { margin-bottom: 0.25rem; }

.mt-8 { margin-top: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-1 { margin-top: 0.25rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }

.flex { display: flex; }
.flex-1 { flex: 1; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border: 1px solid var(--border-color, #e5e7eb); }
.border-b { border-bottom: 1px solid var(--border-color, #e5e7eb); }
.border-t { border-top: 1px solid var(--border-color, #e5e7eb); }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

.bg-white { background-color: white; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-200 { background-color: #e2e8f0; }

.bg-red-50 { background-color: #fef2f2; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-purple-50 { background-color: #faf5ff; }
.bg-emerald-50 { background-color: #f0fdf4; }

.bg-blue-100 { background-color: #dbeafe; }
.bg-purple-100 { background-color: #f3e8ff; }

.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }

.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-amber-700 { color: #b45309; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-purple-600 { color: #9333ea; }
.text-purple-700 { color: #7e22ce; }
.text-emerald-700 { color: #047857; }

.text-right { text-align: right; }
.text-center { text-align: center; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-tiny { font-size: 0.625rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }

.min-h-\[500px\] { min-height: 500px; }

.hover\:text-red-500:hover { color: #ef4444; }
.hover\:bg-red-50:hover { background-color: #fef2f2; }
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:text-slate-700:hover { color: #334155; }
.hover\:border-blue-300:hover { border-color: #93c5fd; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }

.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }

.animate-fadeIn {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Info Box */
.info-box {
    padding: 1rem;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.info-box i {
    color: #3b82f6;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-box-text {
    font-size: 0.875rem;
    color: #1e40af;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .cam-tab-btn {
        flex: 0 1 auto;
        min-width: 140px;
    }
    
    .baseline-table {
        font-size: 0.75rem;
    }
    
    .baseline-table th,
    .baseline-table td {
        padding: 0.5rem 0.75rem;
    }
}

/* Overrides: baseline polish - additional spacing, numeric alignment, delete button */
/* These rules override earlier baseline table definitions to improve readability */
.baseline-table {
    font-size: 0.95rem;
}

.baseline-table th {
    padding: 0.85rem 1rem;
}

.baseline-table td {
    padding: 0.8rem 1rem;
}

/* Right-align numeric cells and ensure inputs are right-aligned */
.baseline-table td.numeric, .baseline-table td.numeric-cell {
    text-align: right;
}

.baseline-table .numeric-cell input {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Delete button styles, visible on row hover */
.btn-del-row {
    color: #94a3b8;
    background: transparent;
    border: none;
    padding: 0.35rem;
    border-radius: 9999px;
    transition: all 0.15s ease;
}

.group:hover .btn-del-row {
    opacity: 1 !important;
}

.btn-del-row:hover {
    color: #ef4444;
    background: rgba(239,68,68,0.06);
}

/* Tfoot emphasis */
.baseline-table tfoot td {
    font-weight: 700;
    color: #0f172a;
}

/* Make conversion table values clearer */
.conversion-table td:last-child {
    font-variant-numeric: tabular-nums;
}

/* Chart.js Canvas Container Fixes */
canvas {
    max-width: 100%;
    height: auto !important;
}

#cam-consumption-chart {
    display: block;
    margin: 0 auto;
}

#cam-scenarios-chart {
    display: block;
    max-height: 280px;
}

/* Ensure grid and space-y work well with charts */
.space-y-6 > * {
    margin-top: 1.5rem;
}

/* Scenario Cards specific styling */
.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* Gradient-to utilities support */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-slate-50 {
    --tw-gradient-from: #f8fafc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0));
}

.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-slate-50 {
    --tw-gradient-to: #f8fafc;
}

.to-slate-100 {
    --tw-gradient-to: #f1f5f9;
}

.from-green-50 {
    --tw-gradient-from: #f0fdf4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.to-emerald-50 {
    --tw-gradient-to: #f0fdf4;
}

.from-slate-100 {
    --tw-gradient-from: #f1f5f9;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(241, 245, 249, 0));
}

.from-indigo-600 {
    --tw-gradient-from: #4f46e5;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0));
}

.to-indigo-700 {
    --tw-gradient-to: #4338ca;
}

.hover\:from-indigo-700:hover {
    --tw-gradient-from: #4338ca;
}

.hover\:to-indigo-800:hover {
    --tw-gradient-to: #312e81;
}

/* Utility transforms for scenario cards */
.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.hover\:-translate-y-0-5:hover {
    transform: translateY(-0.125rem);
}

/* Button transform utilities */
.hover\:-translate-y-0-5:hover {
    transform: translateY(-0.125rem);
}

/* Border color utilities */
.border-green-200 {
    border-color: #bbf7d0;
}

.border-slate-300 {
    border-color: #cbd5e1;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

/* Gap utilities */
.gap-5 {
    gap: 1.25rem;
}

/* Padding utilities */
.px-2-5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

/* Text color utilities */
.text-emerald-700 {
    color: #047857;
}

.text-indigo-700 {
    color: #4338ca;
}

.text-indigo-600 {
    color: #4f46e5;
}

.text-green-700 {
    color: #15803d;
}

.text-blue-700 {
    color: #1d4ed8;
}
