/* ===================================
   報告管理画面専用CSS
   =================================== */

/* 報告カード */
.report-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s;
}

.report-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.report-header {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.report-type {
    font-weight: 600;
    font-size: 0.875rem;
}

.report-company {
    color: #64748b;
    font-size: 0.875rem;
}

.report-body {
    margin-bottom: 0.75rem;
}

.report-info {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: #475569;
}

.report-memo {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 0.375rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.5;
}

.report-footer {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* バッジ */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.25rem;
    background: #e2e8f0;
    color: #475569;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-primary {
    background: #e0e7ff;
    color: #3730a3;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* フォームセクション */
.form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* 統計グリッド */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

/* フィルターコントロール */
.filter-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.filter-controls .form-control {
    min-width: 180px;
}

/* ボタン小 */
.btn-small {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

/* 空の状態 */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
