/* Custom styles for Family Tree Project */

body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.timeline-container {
    border-left: 3px solid #007bff;
    padding-left: 2rem;
    margin-top: 1rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #007bff;
}

.timeline-date {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.event-card {
    border-left: 3px solid #28a745;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 0 4px 4px 0;
}

.confidence-certain { color: #28a745; }
.confidence-likely { color: #17a2b8; }
.confidence-possible { color: #ffc107; }
.confidence-uncertain { color: #dc3545; }

.person-photo {
    max-width: 150px;
    height: auto;
    border: 2px solid #dee2e6;
}

.navbar-brand {
    font-weight: bold;
    color: white !important;
}

.btn {
    border-radius: 0.375rem;
}

.card-header {
    background-color: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

.list-group-item {
    border-left: none;
    border-right: none;
}