/* public/css/memorial.css */
.memorial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.memorial-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.condolence-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.condolence-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #2563eb;
}
