﻿.toolbar {
    display: flex;
    gap: 10px;
    background-color: #f9fbfc;
    padding: 10px;
    border: 1px solid #d3d9e3;
    border-radius: 5px;
}

.toolbar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid #d3d9e3;
    border-radius: 4px;
    padding: 8px;
    width: 32px;
    height: 32px;
    font-size: 16px;
    color: #4a4a4a;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s, transform 0.2s;
}

    .toolbar-button:hover {
        background-color: #e8eff7;
    }

    .toolbar-button:active {
        transform: scale(0.95);
    }

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #d3d9e3;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    padding: 5px 0;
    width: 120px;
}

    .dropdown-menu .dropdown-item {
        padding: 8px 12px;
        cursor: pointer;
        color: #4a4a4a;
        transition: background-color 0.2s;
    }

        .dropdown-menu .dropdown-item:hover {
            background-color: #e8eff7;
        }

.dropdown:hover .dropdown-menu {
    display: block;
}
