﻿.collapsible-panel {
    position: fixed;
    top: 0;
    left: 0; /* Changed from right: 0 */
    height: 100%;
    width: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2); /* Shadow flipped to right side */
    padding: 10px;
    transform: translateX(0); /* Starting position */
    transition: transform 0.3s ease-in-out;
    max-height: 100vh;
}

    /* Collapsed state - Slide to right instead of off-screen right */
    .collapsible-panel.collapsed {
        transform: translateX(-100%); /* Changed to slide left off-screen */
    }

    /* Scrollbar styling */
    .collapsible-panel::-webkit-scrollbar {
        width: 8px;
    }

    .collapsible-panel::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .collapsible-panel::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

/* Content styling */
.panel-content {
    padding: 3px;
    width: 370px;
    height: 25%;
    margin-top: 30px;
}

.panel-button {
    font-size: 20px;
    padding: 10px 20px; /* Adjust padding as needed */
}
/* Toggle button styling - Adjusted position */
.toggle-btn {
    position: fixed;
    top: 10px;
    left: 10px; /* Changed from right to left */
    z-index: 1000;
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

    .toggle-btn:hover {
        background-color: #45a049;
    }

.top_right {
    text-align: left; /* Aligns text or items to the left */
    margin-top: 70px; /* Adds a top margin of 30px */
    height: 10px;
}

/*class for dev portal properties table.*/
.win-properties {
    border-collapse: collapse;
    background-color: #f9f9f9;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden; /* Ensure rounded corners apply to content */
    font-family: Arial, sans-serif;
}

.win-properties_header {
    background-color: #0078d4;
    color: white;
    padding: 5px;
    text-align: left;
    font-size: 14px;
    position: relative;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
}

/*    .win-properties_button {
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 2px 8px;
        border-radius: 4px;
        cursor: pointer;
        float: right;
        font-size: 12px;
    }*/

       /* .win-properties_button :hover {
            background-color: #0078d4;
        }*/

.win-properties tbody tr {
    border-bottom: 1px solid #ddd;
}

.win-properties tr:hover {
    background-color: #0078d4;
    transition: background-color 0.2s ease;
}

.win-properties td {
    padding: 4px;
    font-size: 13px;
    color: #333;
}

.win-properties td:first-child {
    font-weight: bold;
    width: 40%; /* Give more space to labels */
    background-color: #e6f3ff; /* Light blue for label column */
}

.treeSelect {
    color: #69bafd;
    font-weight: bolder;
    background-color: #f1f7ff;
    border-radius: 20px;
    padding: 5px 10px 5px 10px;
}
/*.leftSidePanel {

}
.centerDevpanel{
    width:70%;
    height:98%;
    top:5%;
    left:13.5%;
    align-items:normal;
}*/

.Dev-grid-section {
    background-color: white;
    padding: 1px;
    border-radius: 3px;
    border: 1px solid #333;
    flex: 0 0 auto;
    width: 50px; /* Slightly smaller to fit more sections */
    height: 37px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .Dev-grid-section:hover {
        transform: scale(1.1);
        background-color: lightblue;
    }
.grid-1 {
    display: grid;
    /*grid-template-columns: auto auto auto;*/
    gap: 0px;
    width: 100%;
    /*height: px;*/ /* Increased for visibility */
}
.grid-2 {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 0px;
    width: 100%;
    /*height: px;*/ /* Increased for visibility */
}

.item {
    background-color: #3792cb; /* Darker for contrast */
    border: 0.5px solid #fff; /* White border for visibility */
    /* padding:2px;*/
    text-align: center;
    border-radius: 2px;
    font-size: 9px; /* Slightly larger */
    line-height: 7px;
    color: #fff; /* White text for contrast */
}

.dock-item {
    width: 12px; /* Slightly larger for clarity */
    height: 12px;
    margin: 0 auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.user-icon {
    border-radius: 50%;
    border: 2px solid #333;
}
    /*.dock-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 2px;
        border: 1px solid #fff;*/ /* White border for visibility */
    /*}*/