/* ==============================
   TOOL SWITCHER (GLOBAL)
   ============================== */

.tool-switcher-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 24px 0 18px;
}

.switcher-link {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 14px 10px;
    border-radius: 12px;

    background: #ffffff;
    border: 1px solid #d7dbe3;

    color: #5f6b7a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;

    transition: all 0.15s ease;
}

.switcher-link:hover {
    border-color: #b9c2d1;
    background: #f7f9fc;
}

.switcher-link.active {
    border: 2px solid #1f3c88;
    background: #ffffff;
    color: #1f3c88;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
