/**
 * Batch Cards Styling - Compact Design
 * Card batch compatte, click apre popup dettagli
 */

/* Batch Card - Stile compatto come single entry */
.batch-card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.batch-card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Batch Header - Layout come entry-item */
.batch-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.batch-info {
    flex: 1;
    min-width: 0;
}

.batch-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 4px;
}

.batch-icon {
    font-size: 18px;
}

.batch-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.batch-date {
    font-size: 13px;
    color: #9ca3af;
}

.batch-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.batch-total {
    font-size: 16px;
    font-weight: 700;
    color: #059669;
}

/* Batch Items - SEMPRE NASCOSTI (solo in popup) */
.batch-items {
    display: none;
}
