body {
    font-family: Arial, sans-serif;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.btn {
    padding: 6px 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    margin-right: 4px;
}

/* Nút chọn khổ in – KHỐI 4 */
.btn-sheet {
    min-width: 110px;
    padding: 6px 16px;
    border-radius: 999px;
    border: none;
    background: #ddd;        /* TRẠNG THÁI CHƯA CHỌN: xám */
    color: #333;
    font-weight: bold;
    cursor: pointer;
}

/* Nút đang được chọn */
.btn-sheet-active {
    background: #ffd800;     /* Vàng nổi bật */
    color: #000;
    box-shadow: 0 0 0 2px #000 inset;  /* viền đậm để dễ thấy */
}



.btn-yellow {
    background: #ffd800;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-secondary {
    background: #ccc;
}

.modal.hidden {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 16px;
    border-radius: 4px;
    width: 500px;
    max-width: 95%;
}

.message {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #333;
}

.mt-2 {
    margin-top: 8px;
}
