
.journal-section {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
}

.journal-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.journal-subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.journal-search input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.journal-table-header,
.journal-row {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 2fr 1fr 60px;
    gap: 15px;
    align-items: center;
}

.journal-table-header {
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 2px solid #eee;
}

.journal-row {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.journal-col img {
    width: 50px;
    height: auto;
}

.badge {
    background: #d4f5d3;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.progress {
    background: #eee;
    height: 6px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.progress .bar {
    background: #28a745;
    height: 100%;
    border-radius: 4px;
}

