/* Sidebar Styles */

/* Right Sidebar - Primary Tools */
/* Note: Main styling is at the bottom of this file */

.sidebar-header {
    display: none;
}

.tool-group {
    padding: 0;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-group h4 {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: normal;
}

.tool-btn {
    width: 54px;
    height: 54px;
    padding: 0;
    margin: 0;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Galil', sans-serif;
    letter-spacing: normal;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}


.tool-btn:hover {
    background: rgba(255,255,255,0.25);
}

.tool-btn:active {
    transform: translateY(0);
}

.tool-btn i {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.tool-btn .tooltip {
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tool-btn .tooltip::before {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0,0,0,0.9);
}

.tool-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(5px);
}

/* Left Sidebar */
.left-sidebar {
    grid-area: left-sidebar;
    background: #f8fafc !important; /* Lighter unified color */
    border-right: none;
    overflow-y: auto;
}

/* Right Sidebar */
.right-sidebar {
    grid-area: right-sidebar;
    background: #f8fafc !important; /* Lighter unified color */
    border-left: none;
    overflow-y: auto;
}