/* Inventory Module Styles */

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}
.content-main { display: flex; flex-direction: column; gap: 24px; }
.content-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* Detail Grid */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.detail-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}
.detail-description {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.detail-description p {
    margin: 8px 0 0 0;
    color: var(--text-secondary);
}

/* Budget Stats */
.budget-stat {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.budget-stat:last-of-type { border-bottom: none; }
.budget-label { color: var(--text-secondary); }
.budget-value { font-weight: 600; color: var(--text-primary); }

/* Progress Bar */
.progress-bar-container {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    margin-top: 16px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}
.progress-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Inventory Index Action Cards */
.action-card {
    text-align: center;
}
.action-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}
.action-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.feature-list li:last-child {
    border-bottom: none;
}

/* Common Grid Classes */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
