.records-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    justify-items: start;
}
.record-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 0;
    background: #fafafa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.record-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 0;
    background: #fafafa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-height: 200px; /* Ensures uniform card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distributes content evenly */
}
@media (max-width: 768px) {
    .records-list {
        grid-template-columns: 1fr;
    }
}