﻿body {
}

.page-title {
    padding: 15px 0 0 0;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.group-header {
    background-color: #f5f5f5;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    text-align: center;
}

    .group-header:hover {
        background-color: #e0e0e0;
    }

        .group-header:hover .caret {
            color: #007bff; /* Change color on hover */
        }

.caret {
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.2s ease-in-out;
}

[data-player-type] {
    display: table-row;
}

    [data-player-type][style*="display: none"] {
        display: none;
    }

.table-header {
    font-size: 18px;
    font-weight: bold;
    background-color: #3d82fd !important;
    color: #fff !important;
    position: sticky;
    top: 0;
    text-align:center;
}

.deviceTableHeaders {
    text-align: center;
}

.deviceGV {
    margin-bottom: 20px;
}

.device-panel-header {
    height: 50px;
    background-color: #3d82fd !important;
    color: #fff !important;
}

.deviceStationHeader {
    float: left;
    vertical-align: middle;
    margin-top: 5px;
    font-size: 18px;
    font-weight: bold;
}

.headerbtn {
    --bs-btn-bg: darkblue;
    vertical-align: middle;
    margin-top: 5px;
    margin-right: 10px;
}

.deviceStationPnl {
    margin-top: 20px;
}

.device-panel-side-body {
    align-content: center;
}

.device-panel-footer-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.device-panel-footer-list-item {
    float: right;
    margin-left: 10px;
}

.file-scroll-container {
    height: 400px; /* Adjust height as needed */
    overflow-y: scroll; /* Enable vertical scrolling */
    border: 1px solid #ccc; /* Optional: Add border to indicate scroll area */
    padding: 10px;
}

.file-container {
    float: left;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.file-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 1px solid #ccc;
    margin-bottom: 5px;
}

.file-name {
    max-width: 218px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

    .file-name:hover::after {
        content: attr(data-full-name);
        position: absolute;
        background-color: #f9f9f9;
        padding: 5px;
        border: 1px solid #ccc;
        z-index: 1000;
        white-space: nowrap;
    }