﻿.entries-container {
    padding: 10px;
}

.entries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.report-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;
    position:relative;
    min-height:130px
}


.report-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    line-height: 1.4;
}

.report-name > span {
    font-weight: normal;
}

.report-card .kebab-menu {
    position: relative;
    display: inline-block;
}

.report-card .kebab-menu .menu-item {
    height: 100%;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 700
}


    .report-card .kebab-menu .menu-item:hover {
        background-color: rgba(255, 255, 255, 0.1); 
        color: #fff;
    }
    
    .report-card .kebab-menu .kebab-menu-tooltip {
    position: absolute;
    left: 10px;
    top: 20px;
    background: #8897b6;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 1000;
    width: 200px;
}

    .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;
    }
