html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
    font-family: system-ui, sans-serif;
}
/***************************
 * HEADER
 **************************/
#wb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: #222;
    display: flex;
    align-items: center;
    padding: 0 8px;
    box-sizing: border-box;
    z-index: 10;
}
/***************************
 * WAFFLE BUTTON
 **************************/
#wb-waffle {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}
#wb-waffle:hover {
    background: #444;
}
#wb-waffle svg {
    fill: white;
}
/***************************
 * OVERLAY
 **************************/
#wb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    z-index: 9999;
}
/***************************
 * LAUNCHER
 **************************/
#wb-launcher {
    margin-top: 52px;
    margin-left: 8px;
    width: 360px;
    max-width: calc(100vw - 16px);
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    box-sizing: border-box;
}
/***************************
 * APP ITEM
 **************************/
.wb-app {
    text-decoration: none;
    color: #333;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    transition: 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wb-app:hover {
    background: #f2f2f2;
    transform: translateY(-1px);
}
.wb-app img {
    width: 48px;
    height: 48px;
}
.wb-app span {
    display: block;
    margin-top: 8px;

    font-size: 14px;
}
/***************************
 * HELPERS
 **************************/
.hidden {
    display: none !important;
}
