﻿.vdl-listContainer {
    margin-top: 0px;
}

.vdl-listContainer > div {
    /*margin-bottom: 5px;*/
}

.vdl-listItemContainer {
    position: relative;
    margin-left: 7px;
    margin-right: 7px;
    margin-top: 7px;
    box-sizing: border-box;
}


.vdl-listItem {
    background-color: #ffffffdd !important;    
    padding: 0px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd !important;    
}

.vdl-firstItem {
    border-radius: 7px 7px 0px 0px;
}

.vdl-lastItem {
    border-radius: 0px 0px 7px 7px;
}

.vdl-metadata-header {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: #444 !important;
}

.vdl-metadata-data {
    font-size: 0.8rem !important;
    color: #777 !important;
}

.vdl-grid-list {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
    display: grid; /* Set display to grid for the whole list */
    grid-template-columns: 1fr 1fr; /* Create two columns of equal width */
    gap: 4px;
    font-size: 0.8rem !important;
    font-family: 'Roboto';
}

.vdl-grid-list li {
    display: contents; /* Make <li> contents part of the grid */
}

.vdl-grid-list span
{
    color: #777;
}

/* Optional: Style your spans for additional clarity or design */
.vdl-grid-list span:first-child {
    text-align: left; /* Align the descriptions to the right */
    padding-right: 10px; /* Space between the description and the grid gap */
    color: #555;
    font-weight: bold;
}

.fullscreen-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 9999;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10000;
    background: #000000aa;
    color: #ddd;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    padding: 0px;
    font-size: 11px;
    font-weight: bold;
}

.fullscreen-iframe {
    width: 100%;
    height: 100%;
    border: none;
}