﻿.entries-container {
    padding: 10px;
}

.entries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.entry-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.entry-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    line-height: 1.4;
}

    .entry-name i,
    .entry-field i {
        font-size: 16px;
        color: #555;
        flex-shrink: 0;
        width: 20px;
        text-align: center;
    }

.entry-field {s
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    line-height: 1.4;
}

    .entry-field span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        flex: 1;
        min-width: 0;
    }
