body {
    background-color: rgb(227, 226, 231);
    margin: 0;
}
.text_sm {
    font-size: 10px;
}
.text_active {
    color: orangered;
    font-weight: 800;
}
.text_sm.text_active {
    text-decoration: line-through;
}
.dough,
.topping_btn,
.text_center {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table {
    width: 450px;
    padding: 20px;
    margin: 3% auto;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.pizzas {
    padding: 20px;
    background: burlywood;
}
.pizza_toppings {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 99;
}
.topping_btns {
    flex: 1 1 100%;
    height: 70px;
    display: flex;
    gap: 10px;
}
.topping_btn {
    flex: 0 0 70px;
    border: 3px solid #ddd;
    box-sizing: border-box;
    box-shadow: 0 0 0 3px #aaa;
    border-radius: 10px;
    cursor: pointer;
}
.topping_btn.on {
    border-color: #ff0e0e;
}
/* btn color */
/* 스크립트에서 색상 새로 덮어씀(pizza.js) */
.source {
    background-color: tomato;
}
.cheese {
    background-color: wheat;
}
.pepperoni {
    background-color: salmon;
}
.green {
    background-color: olivedrab;
    color: #fff;
}
.olive {
    background-color: #222;
    color: #fff;
}
/* 빵 */
.doughs {
    flex: 0 0 120px;
    padding: 30px 10px;
    background: burlywood;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 10px;
}
.dough {
    width: 50px;
    height: 40px;
    margin: 10px 0;
    background: wheat;
    border: 2px solid #f6e8ce;
    border-radius: 50%;
    box-sizing: border-box;
    cursor: pointer;
}
.dough_empty{
    background: #997c55;
}
.plate {
    width: 200px;
    height: 200px;
    box-sizing: border-box;
    position: relative;
}
.pizza {
    width: 100%;
    height: 100%;
    background: blanchedalmond;
    border: 1px solid #f0cf93;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}
/* canvas 캔버스 */
.pizza_drawing {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
.pizza_oven,
.pizza_table {
    text-align: center;
    margin-top: 10px;
}
.btn_cook {
    cursor: pointer;
    margin-right: 10px;
}
/* 커서 */
.topping,
.new_topping {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #f6e8ce;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99;
}
.cursor {
    position: fixed;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}