﻿
.home-container {
    padding: 10px;
    /*background-color: whitesmoke;*/
    overflow: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}
.meeting {
    /*min-height:300px;*/
    max-height:500px;
    position:relative;
    /*background-color:red;*/
}

.div-carousel {
    border: 1px solid silver;
    border-radius: 10px;
    min-height: 300px;
    width: 100%;
    position: relative;
    padding: 10px;
    background-color: whitesmoke;
}

    .div-carousel .titr {
        position: absolute;
        top: 5px;
        right: 10px;
        font-size: 12px;
        color: blue;
    }

    .div-carousel .carousel {
        position: absolute;
        top: 30px;
        right: 10px;
        bottom: 5px;
        left: 10px;
    }

.carouselItem {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
}

    .carouselItem .subject {
        /*font-weight: bold;*/
        font-size: 14px;
        color: indianred;
        margin-top: 5px;
        cursor:pointer;
    }

        .carouselItem .subject:hover {
            font-weight: bold;
            color: darkred;
        }


    .carouselItem p {
        font-size: 12px;
        flex-grow: 1;
        overflow: auto;
        border-radius:10px;
    }

    .carouselItem .footer {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        font-size: 10px;
    }

        .carouselItem .footer .details {
            flex-grow: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 20px;
        }

            .carouselItem .footer .details div {
                display: flex;
                gap: 5px;
            }

    .carouselItem div .lbl {
        font-weight: bold;
    }

    .carouselItem .footer .like {
        position: relative;
        float: left;
        z-index: 999 !important;
        display: flex;
        align-items: center;
    }

.datepicker{
    flex-direction:row !important;
    gap:10px !important;
    align-items:center;
    /*flex-wrap:wrap;*/
    padding:0 0 10px 0;
}