

/*File: design/Terasa/css/debuger.css*/
/* debug panel */
.debug-panel {
    position: relative;
    padding-top: 53px;
}
.debug-panel .content {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    background-color: #0b0c14;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.136);
    z-index: 9999;
    overflow-x: auto;
}
.debug-panel .header-bar {
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: rgb(78 87 110/0.20);
    padding: 0px 15px;
    border-top: 1px solid rgb(47 54 71/1);
}
.debug-panel .debug-tabs {
    max-height: 350px;
    -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 11%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
    overflow-y: auto;
}
.debug-panel .header-bar .items {
    display: flex;
    gap: 10px 10px;
}
.debug-panel .header-bar .item {
    display: flex;
    align-items: center;
    color: #8088a2;
    font-size: 14px;
    padding: 14px 5px 14px 0;
    cursor: pointer;
}
.debug-panel .header-bar .item:hover {
    color: #f2f2f2;
}
.debug-panel .header-bar .item.active {
    color: #f2f2f2;
}
.debug-panel .header-bar .item svg {
    width: 20px;
    height: 20px;
    margin-right: 3px;
}
.debug-panel .header-bar .item svg path {
    stroke: #8088a2;
    transition: stroke 0.3s ease;
}
.debug-panel .header-bar .item.active svg path {
    stroke: #f2f2f2;
}
.debug-panel .header-bar .item:hover svg path {
    stroke: #f2f2f2;
}
.debug-panel .tab-item {
    padding: 20px 25px;
    opacity: 1;
    height: auto;
    transition: opacity 0.3s ease, height 0.3s ease;
}
.debug-panel .tab-item.hide {
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.debug-panel .debug-tabs .tab-item h2 {
    color:#DFDFDF;
    font-size: 15px;
    padding: 5px 0 10px 0;
}
.debug-panel .debug-tabs .tab-item h3 {
    color:#DFDFDF;
    font-size: 12px;
    font-weight: 200;
    margin: 0 0 0 10px;
    padding: 0;
    text-transform: uppercase;
}
.debug-panel .debug-tabs .tab-item .count {
    background-color: #2c2c2c;
    padding: 2px 6px;
    font-size: 13px;
    border-radius: 4px;
}
.debug-panel .debug-tabs .tab-item table {
    border-collapse: collapse;
    font-size: 14px;
    line-height: normal;
    margin: 5px 10px 15px 10px;
    width: calc(100% - 10px);
}
.debug-panel .debug-tabs .tab-item table th {
    display: table-cell;
    font-weight: 600;
    padding-bottom: 0.7em;
    text-align: left;
}
.debug-panel .debug-tabs .tab-item table td {
    border: none;
    display: table-cell;
    margin: 0;
    text-align: left;
}
.debug-panel .debug-tabs .tab-item table tbody tr:hover {
    background-color: #2c2c2c;
}
.debug-panel .code {
    font-size: 13px;
    white-space-collapse: preserve;
    text-wrap: nowrap;
}
.debug-panel .system {
    margin-left: auto;
}
.debug-panel .system-info {
    border: 1px solid #3b4174;
    color: #f2f2f2;
    font-weight: 600;
    line-height: 1.5em;
    font-size: 14px;
    padding: 3px 6px;
    border-radius: 6px;
    background-color: rgb(124 135 247/0.1);
    display: flex;
    align-items: center;
    text-decoration: none;
}
.debug-panel .name {
     margin-right: 5px;
    -webkit-background-clip: text;
    background-image: linear-gradient(0deg,#98A4F7 -3.5%,#DADFFC 125%);
    color: transparent !important;
}
@media (max-width: 768px) {
    .debug-panel .header-bar .item span {
        display: none;
    }
}

