﻿.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.h-custom {
    height: calc(100% - 73px);
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}
.bg-1 {
    background: url(../img/bg.jpg) repeat;
}

body {
    background-color: hsl(0, 0%, 96%);
}

.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

#sidebar-nav {
    width: 260px;
}

    #sidebar-nav a .bi {
        margin-right: 10px;
    }

.navbar {
    box-shadow: 2px 2px 4px #aba8a8;
}

#sidebar-nav a:hover,
#sidebar-nav a:active,
#sidebar-nav a.active {
    background: #0d6efd;
    color: #fff;
}

.btn-xs {
    font-size: 11px;
    padding: 3px 10px;
}

.semaforo-lista {
    padding: 0px;
}

    .semaforo-lista li:first-child {
        background-color: #dcffe4; /* verde */
        border-left: 3px solid #28a745;
    }

    .semaforo-lista li:last-child {
        background-color: #ffe1e4; /* rojo */
        border-left: 3px solid #dc3545;
    }

    .semaforo-lista li:not(:first-child):not(:last-child) {
        background-color: #fff3ce; /* amarillo */
        border-left: 3px solid #ffc107;
    }

    .semaforo-lista li {
        padding: 8px 15px;
        margin-bottom: 4px;
        list-style: none;
    }

tr.selected > td {
    background-color: #feff74;
}
.title-app {
    font-weight: 600;
    color: #000;
}
.title-app:hover {
    color: #0c56e1;
}
.list-app a {
    text-decoration:none;
}


.explorer-container {
    width: 100%;
    max-width: 900px;
    border: 1px solid #848484;
    border-radius: 0px;
    box-shadow: 0 0 6px rgb(153, 153, 153);
    font-family: 'Segoe UI', sans-serif;
    margin: 20px auto;
    background-color: white;
}

.explorer-titlebar {
    background-color: #0078D7;
    color: white;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.explorer-buttons span {
    display: inline-block;
    margin-left: 8px;
    cursor: pointer;
}

/*.btn-minimize {
    background-color: gold;
}

.btn-maximize {
    background-color: limegreen;
}

.btn-close {
    background-color: red;
}*/

.explorer-toolbar {
    padding: 8px;
    background: #f1f1f1;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.explorer-toolbar input {
    flex: 1;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .explorer-toolbar input[type=text]:active,
    .explorer-toolbar input[type=text]:focus {
        border: 1px solid #5398ff;
    }

.explorer-gridview {
    width: 100%;
    border-collapse: collapse;
}

    .explorer-gridview th, .explorer-gridview td {
        border-bottom: 1px solid #ccc;
        font-size: 12px;
    }
    .explorer-gridview td {
        padding: 8px;
    }
    .explorer-gridview th a {
        color: #000;
        text-decoration: none;
        padding: 8px;
        width: 100%;
        display:inline-block;
        border-right:1px solid #aba8a8;
    }

    .explorer-gridview th {
        background-color: #ffffff;
        font-size: 12px;
        position: relative;
    }

.file-icon {
    margin-right: 6px;
}

.folder::before {
    content: '📁';
}

.file::before {
    content: '📄';
}

.explorer-gridview tr th:after {
    content: "\F127";
    color: #808080;
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 15px;
    font-size: 12px;
    top: 9px;
}

.explorer-gridview tr th.sorting-asc:after,
.explorer-gridview tr th.asc:after {
    content: "\F571";
    color: #0d12fd;
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 15px;
    font-size: 15px;
    top: 7px;
}

.explorer-gridview tr th.desc:after,
.explorer-gridview tr th.sorting-desc:after {
    content: "\F572";
    color: #0d12fd;
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 15px;
    font-size: 15px;
    top: 7px;
}
