/* lost_and_found_styles.css */

/* --- Card Overrides for Lost/Found Urgency (The Red Look) --- */

.lost-and-found-card {
    /* Overrides the default neutral card colors from style.css */
    background-color: #fef0f0; /* Very light red background */
    border: 1px solid #ff7f7f; /* Noticeable red border */
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.lost-and-found-card:hover {
    transform: translateY(-5px);
    /* Slightly less intense red shadow on hover */
    box-shadow: 0 8px 20px rgba(255, 127, 127, 0.2); 
}

.lost-and-found-card .item-title {
    font-size: 1.2rem;
    color: #a00; /* Darker red for the title */
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.lost-and-found-card .item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1; 
}

.lost-and-found-card .meta-info {
    font-size: 0.8rem;
    color: #888; 
    display: flex;
    justify-content: space-between;
}

/* --- Empty State Overrides --- */

/* Ensures the empty state message also reflects the caution theme */
.empty-state-message {
    color: #a00 !important; 
    font-weight: 500;
}