/* ==============================
   PLOTBIZ CORE STYLE
   ============================== */

/* RESET */
*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f7f8fb;
    color:#1d2740;
}

/* CONTAINER */
.pb-container{
    width:94%;
    max-width:1180px;
    margin:0 auto;
}

/* CARDS (NO RADIUS!) */
.pb-card{
    background:#fff;
    border:1px solid #e5e7ef;
    padding:16px;
}

/* BUTTONS (ONLY HERE RADIUS) */
.pb-btn{
    border-radius:10px;
}

/* GRID SYSTEM */
.pb-grid{
    display:grid;
    gap:20px;
}
