/* Reporting Page Styles */
.reporting-container {
    max-width: 1600px;
    margin: 20px auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.editable {
    cursor: text;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.editable:hover {
    background-color: #e9ecef;
}

.editable:focus {
    background-color: white;
    outline: 2px solid #007bff;
    outline-offset: -2px;
}

/* Reporting table specific */
#reportingTable th {
    font-size: 13px;
}

#reportingTable td {
    font-size: 13px;
    padding: 8px;
}

/* Calendar view styles */
.calendar-day-row {
    background-color: #f8f9fa;
    font-weight: 600;
}

.calendar-day-row td {
    background-color: #e9ecef;
    border-bottom: 2px solid #dee2e6;
}

.werbemittel-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}