﻿.custom-list-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 30px;
    /*border: 2px solid #247045;*/
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
}



.custom-list-item:hover {
    border-color: #fff;
    background-color: #fff;
    box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.01);
}

    .custom-list-item .edit-icon {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        color: gray;
        opacity: 0;
        transition: opacity 0.3s ease;
        cursor: pointer;
    }

    .custom-list-item:hover .edit-icon {
        opacity: 1;
    }

.custom-image-container {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    margin-right: 30px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .custom-image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        /* border: 3px solid #fff;*/
        transition: all 0.3s ease-in-out;
    }

        .custom-image-container img:hover {
            /*border-color: #247045;*/
            transform: scale(1.03);
            box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
        }

.custom-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

    /*.custom-content h4 {
        font-size: 20px;
        font-weight: bold;
        color: #333;
    }*/

    .custom-content p {
        font-size: 16px;
        /*color: #247045;*/
        margin-bottom: 20px;
    }

.custom-table-info {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .custom-table-info th, .custom-table-info td {
        padding: 10px;
        border: 1px solid #ddd;
        text-align: center;
    }

    .custom-table-info th {
        background-color: #f0f0f0;
        font-weight: bold;
    }

    .custom-table-info td {
        background-color: #fafafa;
    }

