/* reports-list.css */
.reports-list-page h1 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    color: #333;
}

.reports-list-page .app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reports-list-page .report-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out;
}

.reports-list-page .report-card:hover {
    transform: translateY(-5px);
}

.reports-list-page .app-card-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.reports-list-page .priority-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    object-fit: contain;
}

.reports-list-page .header-text {
    display: flex;
    flex-direction: column;
}

.reports-list-page .priority-text {
    font-weight: bold;
    color: #555;
    font-size: 1.1em;
}

.reports-list-page .submitted-by-text {
    font-size: 0.9em;
    color: #888;
}

.reports-list-page .app-card-media {
    width: 100%;
    height: 180px; /* Adjust as needed */
    background-color: #f0f0f0; /* Placeholder for map/image */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bbb;
    font-style: italic;
    font-size: 0.9em;
    border-bottom: 1px solid #eee;
}
.reports-list-page .location-text {
    font-size: 0.9em;
    color: #666;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.reports-list-page .app-card-body {
    padding: 15px;
    flex-grow: 1;
}

.reports-list-page .app-card-body h3.site-name {
    margin-top: 0;
    margin-bottom: 5px;
    color: #0073aa;
    font-size: 1.3em;
}

.reports-list-page .app-card-body .incident-type {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 10px;
}

.reports-list-page .description-text {
    font-size: 0.85em;
    color: #444;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 3行に制限 */
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

.reports-list-page .app-card-actions {
    padding: 0 15px 15px;
    text-align: right;
}

.reports-list-page .view-details-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.reports-list-page .view-details-button:hover {
    background-color: #005177;
}

.reports-list-page .pagination {
    text-align: center;
    padding: 20px 0;
}
.reports-list-page .pagination .page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 3px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #0073aa;
    border-radius: 4px;
}
.reports-list-page .pagination .page-numbers.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
