﻿body {
    background: #f4f5f8;
    font-family: sans-serif;
}

.sublimacion-container {
    padding: 18px;
    padding-bottom: 110px;
}

/* HEADER */

.module-header h2 {
    margin: 0;
    font-size: 28px;
}

.module-header p {
    color: #6b7280;
}

/* BOTON */

.new-record-btn {
    width: 100%;
    margin-top: 22px;
    border: none;
    background: #2563eb;
    color: white;
    padding: 16px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 600;
}

/* SUMMARY */

.summary-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.summary-card {
    background: white;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .summary-card.success {
        background: #dcfce7;
    }

/* SECTION */

.section-card {
    margin-top: 26px;
    background: white;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-title {
    margin-bottom: 18px;
}

/* TINTA */

.ink-item {
    margin-bottom: 16px;
}

.ink-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 30px;
}

    .progress-fill.cyan {
        width: 80%;
        background: #06b6d4;
    }

    .progress-fill.magenta {
        width: 65%;
        background: #d946ef;
    }

    .progress-fill.yellow {
        width: 30%;
        background: #eab308;
    }

/* ITEMS */

.recent-job,
.investment-item,
.inventory-item {
    background: #f9fafb;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .inventory-item.critical {
        background: #fee2e2;
    }
